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.
Vanilla showing...er..nothing.
That's right. and I know it's something completely stupid on my part, but I just can't seem to find the problem.
I unpacked Vanilla 0.9.2.6 in a folder, and got a name-based virtual host pointing to it. Now that's working. any test PHP file in there gets parsed correctly.
I used the manual install procedure for vanilla.
As far as I can tell, I did everything correct.
And the big problem is....I don't have an error. the page just returns:
<html><body></body></html>. that's it.
and that's probably default in firefox.
So my guess is that it's returning nothing actually....
It seems like al the "include" stuff in the index.php just doesn't "include" anything, but isn't resulting in an error either.
When I intentionally screw up the path in appg/settings.php, I *DO* get an error about files nog being found. So, it seems that the path is not the problem. something with rights then? (altough i'am pretty sure all the files have read permissions at least)
Does anyone has a clue?
Please tell if I have to post any configuration.
any help is greatly appreciated.
0
This discussion has been closed.
Comments
In 0.9.2.6, the database connection is made in library/Utility.Database.class.php on lines 103-105:
$this->Connection = @mysql_connect($Host, $User, $Password); if (!$this->Connection) $Context->ErrorManager->AddError($Context, $this->Name, "OpenConnection", "The connection to the database failed."); if (!mysql_select_db(dbNAME, $this->Connection)) $Context->ErrorManager->AddError($Context, $this->Name, "OpenConnection", "Failed to connect to the '".$Name."' database.");
The first thing I'd try is echoing something before line 103 to make sure that the parser is getting that far.
Then I'd also try echoing something after line 105 to make sure it's not getting through this code.
Then I'd remove any @ symbols from those lines so that any error messages are spit out to the screen. The Vanilla code is meant to capture those errors, but from time to time in various setups it fails to do so.
It looks there though asif your paths are wrong in your appg/settings file. Care to paste the relative sections?