|
Stephen
This is what your error is
Warning: main(/languages/english/index.php): failed to open stream: No such file or directory in /home/tvphotog/public_html/index.php on line 30
Fatal error: main(): Failed opening required '/languages/english/index.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/tvphotog/public_html/index.php on line 30
if indeed the pp_path was right I would figure it would show exactly as your above error on the first post with a path there
Warning: main(/home/tvphotog/public_html/languages/english/index.php): failed to open stream: No such file or directory in /home/tvphotog/public_html/index.php on line 30
Fatal error: main(): Failed opening required '/home/tvphotog/public_html/languages/english/index.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/tvphotog/public_html/index.php on line 30
HOWEVER IT DOES NOT. SO FROM THE ERROR YOU POSTED IT LOOKED LIKE YOUR PP_PATH IS SET TO NOTHING. This is why I told you to recheck it. There should be a path statement in front of the language include here is the line from the index.php
require "{$Globals['PP_PATH']}/languages/$pplang/index.php";
So the only way you would get the error you posted above is by having an empty $PP_PATH in the config file.
|