Discuss
Discuss copied to clipboard
MODX Revolution native forums.
Hi everyone. I know this plugin hasn't been updated in a while. And it would be great to make it work with PHP 7. Tks
(ERROR @ /var/www/html/ui/core/components/discuss/model/discuss/parser/disbbcodeparser.class.php : 623) PHP warning: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead `$parts[$i] = preg_replace('~\[([/]?)(list|li)((\s[^\]]+)*)\]~ie', '\'[$1\' . strtolower(\'$2\') . \'$3]\'', $parts[$i]);` if replaced it...
Error show user menu in User Profile
Clicking the "X" behind the file won't trigger deletion of the current nor returns any error. 
In the footer of the Discuss pages/forum there is a $LAB that sets the script includes. Jquery is being loaded via http. I need to update this to https. How...
[2016-03-15 13:40:01](ERROR) Error 42S02 executing statement: Array ( [0] => 42S02 [1] => 1146 [2] => Table 'xxx.modx_discuss_thread_participants' doesn't exist ) within the modMenu/ .... resolve.table.resolver file. ``` case xPDOTransport::ACTION_INSTALL:...
I had problem with `[[+createdon:ago]]` wich was reffering to 45 years old. It seems that using `[[+createdon_raw:date=`%d-%m-%Y`:ago]]` works for me in chunks/post/disthreadpost.chunk.tpl Just wanted to share here.
[[+last_createdon]] isn't showing anything in /chunks/post/disboardpost.chunk.tpl Changed it to [[+post_last_on]] I had to add in this line core/components/discuss/controllers/web/messages/index.class.php on line 105 : ``` $threadArray['post_last_on'] = strftime($this->discuss->dateFormat,strtotime($threadArray['post_last_on'])); ``` And now can...
just installed discuss in modx 2.3.1 and new categories do not appear in the dropdown list when trying to add a new board to it. Drag and drop also not...
Line 153 of core\components\discuss\hooks\board\post\getlist.php ``` $threadArray['excerpt'] = substr($threadArray['excerpt'],0,$modx->getOption('discuss.post_excerpt_length', null, 500)).'...'; ``` should be" ``` $threadArray['excerpt'] = substr($threadArray['excerpt'],0, (float) $modx->getOption('discuss.post_excerpt_length', null, 500)).'...'; ``` Substr() wants argument 3 to be a long...