View Single Post
Old January 20th, 2013, 08:38 AM   #20 (permalink)
disalex
Member
Verified Customer
 
Join Date: Sep 2005
Posts: 43
Think I hit the wrong line
So I replaced pp-inc.php with a brand new one from the download. It looks like this at line 1048:
function get_ext( $filename )
{
if ( PHP_VERSION >= '5.3.0' )
{
return substr( $filename, strrpos($filename,".",0) );
}
else
{
return substr( $filename, strrpos($filename,".") );
}
}

restarted IIS and still received the same errors

I then modified it so it looks like this:


function get_ext( $filename )
{
return substr( $filename, strrpos($filename,".") );
}

restarted IIS and received the same errors
disalex is offline   Reply With Quote