We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 15114
    • 102 Posts
    Hi

    I try to install Discuss. I followed these instructions : http://rtfm.modx.com/display/ADDON/Discuss.Installation

    when I call the page www.mydomain.com/forums, the forum is displayed. But the links to boards look like that : http://www.mydomain.com/board/1/discuss-101 and not www.mydomain.com/forums/board/1/discuss-101 , the forums part is missing everywhere. Dis I miss something ?


    My configuration

    - MODX : v2.2.6
    - PHP : 5.3.13
    - MySQL : 5.0.67

    Other extras :

    FormIt 2.1.2
    Login 1.8.1


    My rewite rules :

    RewriteEngine On
    RewriteBase /
    
    # Discuss rewrite rules
    RewriteRule ^forums/thread/([0-9]+)/(.*)$ forums/?action=thread&thread=$1 [L,QSA]
    RewriteRule ^forums/u/(.+)$ forums/?action=user&user=$1 [L,QSA]
    RewriteRule ^forums/board/([0-9]+)/(.*)$ forums/?action=board&board=$1 [L,QSA]
    RewriteRule ^forums/category/([0-9]+)/(.*)$ forums/?category=$1 [L,QSA]
    RewriteRule ^forums/(.+)$ forums/?action=$1 [L,QSA]
    RewriteRule ^forums/(.+)/$ forums/?action=$1 [L,QSA]
    
    # The Friendly URLs part
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
    

    This question has been answered by juro. See the first response.

    • discuss.answer
      • 15075
      • 6 Posts
      Seems like you didn't set discuss.forums_resource_id system setting to ID of resource holding Discuss snippet.
        • 15114
        • 102 Posts
        Correct. I had two resourses named 'forums', one created by Discuss and an other one by me (I didn't understood it was already created)

        Thanks