View Single Post
Old August 1st, 2004, 09:56 AM   #4 (permalink)
Chuck S
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 66,744
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" );
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is offline   Reply With Quote