|
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
|