PHP HELP...error code with php?

  • Thread starter Thread starter teedee
  • Start date Start date
T

teedee

Guest
I am trying to install a script for my website. On the last step to install I press the ¨next¨ button and then this comes up..

Warning: require_once(../includes/classes/database/mysql.php)
[function.require-once]: failed to open stream: No such file or directory in
/home/cgarcia/public_html/includes/step6.php on line 19

Fatal error: require_once() [function.require]: Failed opening required
‘../includes/classes/database/mysql.php’
(include_path=’.:..:/usr/lib/php:/usr/local/lib/php:/home/cgarcia/public_ht
ml/’)
in /home/cgarcia/public_html/includes/step6.php on line 19


can someone tell me how to fix it. what configurations may i need to do in php??
 
You are missing the file ./includes/classes/database/mysql.php or it cannot be located.
Check if the file is on this path and if is there, then try to check why is not including the file.
You can always work the script file to correct the path.
 
Back
Top