crazyman Posted September 2, 2007 Share Posted September 2, 2007 Hi i am trying to get the php script to read a php file located in another branch of the file tree but it keeps coming up with errors. My script is: <?php require_once( ''.$_SERVER['DOCUMENT_ROOT']."/templates/tmpl_{$tmpl}/scripts/config_design.php" ); ?> However it keeps coming up with this error message: Warning: main(/var/httpd/htdocs/templates/tmpl_dfl/scripts/config_design.php): failed to open stream: No such file or directory in /home/www/BferalyP/inc/params.inc.php on line 117 Fatal error: main(): Failed opening required '/var/httpd/htdocs/templates/tmpl_dfl/scripts/config_design.php' (include_path='.:/usr/local/lib/php') in /home/www/BferalyP/inc/params.inc.php on line 117 I have checked the file path and its all correct. Can anyone help me? Quote Link to comment https://forums.phpfreaks.com/topic/67688-php-file-tree-error/ Share on other sites More sharing options...
teng84 Posted September 3, 2007 Share Posted September 3, 2007 Hi i am trying to get the php script to read a php file located in another branch of the file tree but it keeps coming up with errors. My script is: <?php require_once( ''.$_SERVER['DOCUMENT_ROOT']."/templates/tmpl_{$tmpl}/scripts/config_design.php" ); ?> However it keeps coming up with this error message: Warning: main(/var/httpd/htdocs/templates/tmpl_dfl/scripts/config_design.php): failed to open stream: No such file or directory in /home/www/BferalyP/inc/params.inc.php on line 117 Fatal error: main(): Failed opening required '/var/httpd/htdocs/templates/tmpl_dfl/scripts/config_design.php' (include_path='.:/usr/local/lib/php') in /home/www/BferalyP/inc/params.inc.php on line 117 I have checked the file path and its all correct. Can anyone help me? if path is correct then it will open the include the file you want try to include manually dont use $_SERVER['DOCUMENT_ROOT'] just for checking Quote Link to comment https://forums.phpfreaks.com/topic/67688-php-file-tree-error/#findComment-340184 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.