My hosting service just upgraded to php5.2.5 and since then I have been unable to get my posts to work properly.
take this address for example:
http://blog.darkernemesis.com/archives/2008/03/Tribute-to-My-Grandfather/
I do the following to break it down and get the entry
$page = explode("/", $_SERVER['ORIG_PATH_INFO']) ;
This is supposed to break it down so that i can break it so that
$page[2] = 2008
$page[3] = 03
$page[4] = Tribute-to-My-Grandfather
Instead I get a "no input file specified error"
(I also tried ['PATH_INFO'], ['PHP_SELF], ['REQUEST_URI']) which if echo'd displayed properly, but once put into explode alone or through a variable caused the "no input specified error")
I'm pretty much at a standstill right now until I get this to work.
I did this manually in a test file just to see what it did, and as soon as I did the explode, it stopped working too.
Did something change in 5.2.5 to make this not work? I was previously hosted with php5.1.4