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.
Need help with Vanilla installation
Somebody help me 'cause this is driving me nuts :-/
When I try to install vanilla I keep on getting the same error.
I use the installer (also tried manual install)
Connecting with the database is ok, en the SQL file gets imported.
However after the "hoozah your installation is succesfull" (or similar) page, I try to open up the forum and it then the following error comes up:
"Parse error: syntax error, unexpected T_STRING in C:\www\forum\appg\settings.php on line 31"
My PHP version is 4.4.1
Apache version is 2.0
MySQL version is 4.1
I reinstalled everything several times. no luck.
I also tried installing a older php version (3.x) and a newer one: (5.x)
an older SQL version (3) and a newer one (5)
With PHP version 5 I encountered problems with connecting to mysql (support not build in), so I cancelled that since I wasn't really interested in ANOTHER problem, and I figured that it would be unlikely that you require php 5 to run vanilla. (right? or is it?)
Since the error stated is a "parse" error, it does suggest that PHP is the problem, but I have no clue what could be the problem.......
has anyone any idea?
It would be a great help! i really like vanilla... and want to use it.
0
This discussion has been closed.
Comments
That's escaping the quote and making the string extend to the next quote. When it gets there, it tries to interpret the contents of the next string as php code.
Who called that one? *does his little php dance*
define("agAPPLICATION_PATH", "C:\www\forum/");
Those should be either double slashes or in single quotes, although as it is it probably won't have a huge affect on it, as I don't think \w or \f are escape characters of any kind.
define("agAPPLICATION_PATH", "C:/www/forum/");