My webserver just upgraded to PHP 4.3.2 from 4.0.6 and none of my scripts work. They all give internal error message... and I cannot access my server error log files. great!
I tried some trial-n-error debug and I am stuck. I am trying to run this script:
<?php
if ($num){
print "Number is $num;";
}
?>
It produces 500 server error. If I run the script with ?num=1234, then it runs just fine! What must I do so it will run without the var call in the URL?