|
You can try changing these lines in the install.php
if ( file_exists( "photopost.sql") ) {
$filearray = file( "photopost.sql" );
to this
if ( file_exists( "/usr/local/psa/home/vhosts/2rhh.com/httpdocs/photopost/photopost.sql") ) {
$filearray = file( "/usr/local/psa/home/vhosts/2rhh.com/httpdocs/photopost/photopost.sql" );
|