Difference between revisions of "Cant create discussion"

(See Also)
(See Also)
 
(One intermediate revision by the same user not shown)
Line 4: Line 4:
 
</syntaxhighlight>
 
</syntaxhighlight>
 
<br />
 
<br />
Open the phpMyAdmin and run this query against your database:
+
Open the phpMyAdmin and run this '''query''' against your database:
 
<syntaxhighlight lang="php">
 
<syntaxhighlight lang="php">
 
ALTER TABLE `PREFIX_community_groups_discuss` ADD `params` TEXT NOT NULL;
 
ALTER TABLE `PREFIX_community_groups_discuss` ADD `params` TEXT NOT NULL;
Line 13: Line 13:
 
===See Also===
 
===See Also===
  
[[Cant create announcement]]
+
* [[Cant create announcement]]

Latest revision as of 07:10, 9 March 2013

If you experience problems with creating the Discussion in Groups and you get an error similar to this one:

ROOT/components/com_community/events/group.trigger.php:104


Open the phpMyAdmin and run this query against your database:

ALTER TABLE `PREFIX_community_groups_discuss` ADD `params` TEXT NOT NULL;


Note: Replace the PREFIX with your database prefix.

See Also