psychohagis Posted January 10, 2007 Share Posted January 10, 2007 I have this on a page:[code]include '../includes/clean_var.inc.php';[/code]but when I run this i get told the following:[quote]Warning: main(../includes/clean_var.inc.php): failed to open stream: No such file or directory in /home/fhlinux178/b/MYSITE.org.uk/user/htdocs/members/messages/delete.php on line 4Warning: main(../includes/clean_var.inc.php): failed to open stream: No such file or directory in /home/fhlinux178/b/MYSITE.org.uk/user/htdocs/members/messages/delete.php on line 4Warning: main(../includes/clean_var.inc.php): failed to open stream: No such file or directory in /home/fhlinux178/b/MYSITE.org.uk/user/htdocs/members/messages/delete.php on line 4Warning: main(): Failed opening '../includes/clean_var.inc.php' for inclusion (include_path='.:/usr/share/pear') in /home/fhlinux178/b/MYSITE.org.uk/user/htdocs/members/messages/delete.php on line 4[/quote]I dont understand why this does not work becuase I have the following on another page:[code]include '../includes/content_formatting.inc.php';[/code]and that works Link to comment https://forums.phpfreaks.com/topic/33637-include-problem/ Share on other sites More sharing options...
Caesar Posted January 10, 2007 Share Posted January 10, 2007 Where is the file in relation to where you're calling it from? One level up? Two levels up? Link to comment https://forums.phpfreaks.com/topic/33637-include-problem/#findComment-157598 Share on other sites More sharing options...
psychohagis Posted January 10, 2007 Author Share Posted January 10, 2007 its in the folder, [b]/members/messages/[/b] and the one that works is in[b]/members/[/b] Link to comment https://forums.phpfreaks.com/topic/33637-include-problem/#findComment-157605 Share on other sites More sharing options...
emehrkay Posted January 10, 2007 Share Posted January 10, 2007 do this;include ($_SERVER['DOCUMENT_ROOT']. '/includes/clean_var.inc.php'); Link to comment https://forums.phpfreaks.com/topic/33637-include-problem/#findComment-157608 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.