|
If indeed the file does exist this may be a weird server config thing. I have seen it once or twice. A file in the same directory is not recognized
Find this in install.php
if ( file_exists( "reviewpost.sql") ) {
$filearray = file( "reviewpost.sql" );
change it to something like this
if ( file_exists( "/path/to/reviewpost.sql") ) {
$filearray = file( "/path/to/reviewpost.sql" );
|