Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Internal Server Error
I just installed vanilla to a subdomain on my server, and when I navigated to the page to start the install I got "Internal Server Error". I've used the version prior to 1.0.1 and everything worked fine when applied to a subdomain, but now I'm not able to get any further in the installation.
Any ideas?
0
This discussion has been closed.
Comments
if so, rename it to htaccess.txt until you have the forum working and the friendly urls extension installed.
RewriteEngine On Options +FollowSymLinks -Multiviews #Discussions RewriteRule ^discussions$ index.php [QSA,L] RewriteRule ^discussions/$ index.php [QSA,L] RewriteRule ^discussions/([0-9]+)$ index.php?page=$1 [QSA,L] RewriteRule ^discussions/([0-9]+)/$ index.php?page=$1 [QSA,L] RewriteRule ^([0-9]+)$ index.php?CategoryID=$1 [QSA,L] RewriteRule ^([0-9]+)/$ index.php?CategoryID=$1 [QSA,L] RewriteRule ^([0-9]+)/([0-9]+)$ index.php?CategoryID=$1&page=$2 [QSA,L] RewriteRule ^([0-9]+)/([0-9]+)/$ index.php?CategoryID=$1&page=$2 [QSA,L]
There's alot more in this file, but thats the beginning of it.
(or else change it to say 'RewriteEngine Off' at the top)