Jump to content

PHP file tree error


crazyman

Recommended Posts

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?

 

 

Link to comment
https://forums.phpfreaks.com/topic/67688-php-file-tree-error/
Share on other sites

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

Link to comment
https://forums.phpfreaks.com/topic/67688-php-file-tree-error/#findComment-340184
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.