the problem
Code:
Server API CGI/FastCGI
magic_quotes_gpc On
compared to mine php (5.2 but does not mather )
Code:
Server API Apache 2.0 Handler
magic_quotes_gpc Off
so you are running php over cgi
that got the limit that the files get executed under your user id
also magic quotes are on , if you disbale it then it can work already
magic quotes fixes typo's and other things in your script ( like forgetting to place a ; ) but it can also easy break down scripts that are written that way (like in the new version , a lot of "function::status" )
the older version does not have that so far i looked , so my guess based on that is that the magic quotes are changing some settings in the script and prevent execution of the file so it gives a server side error
i also saw that suhosin is installed , but got no idea what that does
based on this information
Quote:
Suhosin is an advanced protection system for PHP installations. It was designed to protect your servers on the one hand against a number of well known problems in PHP applications and on the other hand against potential unknown vulnerabilities within these applications or the PHP core itself.
|
does it do something
eather way , try to disable magic_quotes and it should probaly run
http://php.net/manual/en/security.ma....disabling.php
Greetings From PowerChaos