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.
Options

504 gatway timeout

Hi All..

I just installed Vanilla. When I try to login as admin using username and password, it goes in waiting state. after some time, ends up with 504 - gateway error. can anyone help?

Comments

  • Options
    R_JR_J Ex-Fanboy Munich Admin

    Please try replacing your .htaccess file with

        # Modified
        # If you modify this file then change the above line to: # Modified
        <IfModule mod_rewrite.c>
           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 /thenameofmysubdirectory
           RewriteCond %{REQUEST_FILENAME} !-d
           RewriteCond %{REQUEST_FILENAME} !-f
           RewriteRule ^(.*)$ index.php\?p=$1 [QSA,L]
        </IfModule>
    
Sign In or Register to comment.