Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

[Solved] Organize your categories link doesn't work?

2»

Comments

  • I do have wordpress, here is where I have the 2 folders(separate): http://gyazo.com/bc8802b3dad5ee542ea5f75fd8b61d1b

    htaccess:

    RewriteEngine On
    # Certain hosts may require the following line.
    # If vanilla is in a subfolder then you need to specify it after the /.
    # (ex. You put Vanilla in /forum so change the next line to: RewriteBase /forum)
    # RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)$ index.php\?p=$1 [QSA,L]

    I only see these pertaining to what you pasted, I don't see any 'WebRoot', 'StripWebRoot', or 'Debug'.:

    $Configuration['Garden']['Cookie']['Domain'] = '';
    $Configuration['Garden']['RewriteUrls'] = TRUE;

    >

  • those would be in the default.config.php ,

    copy this and paste it in the config.php

    $Configuration['Garden']['Debug']= TRUE;
    $Configuration['Garden']['RewriteUrls'] = FALSE;
    
    

    see what happens,it may or may not do anything since you have two apps which have htaccess files that may be in conflict in the root

    I do have wordpress, here is where I have the 2 folders(separate):

    I do suggest that you put them in subdirectories, put the wordpress in a subdirectory called blog and the forum in a subdirectory called forum or whatever but that would likely fix this issue.

    you have your www.something where you seem to have installed vanilla,

    it should be in forums directory since it is a subdomain not www.

    http:// forums.rozarcraft.com/forum/discussions

    if it is just

    http:// forums.rozarcraft.com/discussions

    that means it is in the root and since you have wordpress in there there is a conflict of htaccess rewrite rules.

  • I feel so stupid... I figured out the problem. I had a friend go on as Administrator and it worked for him, I needed to clear my Cache. I really appreciate you trying to help me and I'm sorry for wasting your time. Have a good one!

Sign In or Register to comment.