Welcome the Technical Support section. Help us in assisting you by providing us with a concise and descriptive elaboration of your issues. Be specific and if possible, provide us with a step-by-step instruction in replicating your problem.
unable to create announcements or discussion in groups
This seems an old problem to me which occured in older versions of Jomsocial. But the bug is back. Trying to create an announcement in a group (group announcements and discussions are enabled) but get:
Page cannot be found.
Error: 1054 - Unknown column 'params' in 'field list' SQL=INSERT INTO `tdl7n_community_groups_bulletins` (`groupid`,`created_by`,`published`,`title`,`message`,`date`,`params`) VALUES ('8','42','1','Het sponsor project','
I am using the latest Jomsocial version and found no previous versions of plugins.
please goto your Database, phpmyadmin maybe (depend with your hosting provider). and excute this query:
ALTER TABLE `tdl7n_community_groups_bulletins` ADD `params` TEXT NOT NULL ;
if you don't know how to do it. you can provide me cpanel/phpmyadmin access detail. by editing your first post at this topic, and put it at site info form.
Ok that helped regarding announcements and was able to place a new announcement. But it is not working for discussions. That's logical as it makes use of other tables. Error: Unknown column 'params' in 'field list' SQL=INSERT INTO `tdl7n_community_groups_discuss` (`groupid`,`creator`,`created`,`title`,`message`,`params`,`lastreplied`) VALUES ('8','60','2014-08-29 07:41:24','Waar staat \"De Leeuwenbende\" voor? ','
So I used ALTER TABLE `tdl7n_community_groups_discuss` ADD `params` TEXT NOT NULL ;
and now everything works.
Thanks again,
Meindert