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.
Message from my server.. somebody please explain what does it meant
By default, any script ending in .php, .php3, .php4, .phtml or .inc will be considered as a PHP script.
We are running PHP version 4.3.x (always the latest version) with safe mode on and register_globals off. Safe mode means that you can only read or write files that are owned by you, amongst other things (note that if you need to upload? files these files will be created by, and owned by, the nobody user). You should use PHP's own mail functions rather than trying to call sendmail directly.
Register_globals off means that you cannot rely on any CGI parameters automatically creating variables; you have to explicitly access $_GET or $_POST.
Both of these features, while occasionally awkward, are vital security measures on a shared server.
For a full rundown of the PHP configuration on our servers, go to http://superultraxx.uk2.net/phpinfo.php (where xx is the number of the server you've been allocated).
0
This discussion has been closed.
Comments