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.
Installing Vanilla on IIS - returns blank page
Hi everyone,
I'm installing Vanilla on IIS and have got PHP working (see test page here), but when I try and load Vanilla it just returns a blank page. I've got the permissions right, I think, and the MySQL database is setup correctly, I think.
Anyone got any suggestions?
Paul.
I'm installing Vanilla on IIS and have got PHP working (see test page here), but when I try and load Vanilla it just returns a blank page. I've got the permissions right, I think, and the MySQL database is setup correctly, I think.
Anyone got any suggestions?
Paul.
0
This discussion has been closed.
Comments
Others that have had problems like this have found that it might be due to their ftp programs messing up the files as they upload them. If I were to guess, I'd say that it has something to do with the fact that you're running php 5 and it hasn't been configured to work with php 4.x class definitions. I can't remember what the php.ini configuration setting is, but it's something like php4.compatibility... sorry - swamped with work and can't figure it out for you right now.
Anyone else have any ideas?
It could be fixed by replacing header("Location: )" by this code:
if( strstr($_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS')) header("Refresh: 0;url=$location"); else header("Location: $location");
But that's a nasty fix... Maybe Mark should look into it
http://forums.mysql.com/read.php?11,6400,10611#msg-10611