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

How to rename vanilla forum folder

I tried the .htaccess way ( found here: http://vanillaforums.org/discussion/24782/solved-how-to-rename-vanilla-forum-folder ) but I had no luck.

I'm as well moving a 2.1 install to where the previous 2.0 was (both where in folder), yet after renaming the 2.1 folder, I'm getting an error 500 (blank page), if I rename it back it works fine, what am I missing?

Thanks

Tagged:

Comments

  • Options
    AlvaroFGAlvaroFG New
    edited June 2014
    # 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 /foros
       RewriteCond %{REQUEST_FILENAME} !-d
       RewriteCond %{REQUEST_FILENAME} !-f
       RewriteRule ^(.*)$ index.php\?p=$1 [QSA,L]
    </IfModule>
    

    site is @ http://respuestas.ca/foros/

  • Options

    Interestingly enough, the old forum also fail in the new folder I send it to (http://respuestas.ca/foros_20/) , but here I get a more interesting message:

    Fatal error: Call to undefined function val() in .../public_html/foros/library/core/class.request.php on line 341

    It seems to be looking for the old path :s

  • Options

    Fixed! I deleted the files located in the cache folder ;)

Sign In or Register to comment.