genista Posted July 7, 2006 Share Posted July 7, 2006 Hi guys,I have a join script which calls a config script. This works fine.However the following line in the config file calling a functions include does not work (its in the same directory as the config file which is being called fine from the join form):include ("/Supplier/supplierfunctions");I have tried: ..htdocs/Supplier/supplierfunctions.php www.fulladdress.com/htdocs/Supplier/ supplierfunctions.php Supplier/supplierfunctions.phpand everything else in between....But all I get is "failed to open stream: No such file or directory"Any help would be great, as I feel so close, yet so far!!!Thanks,G Quote Link to comment https://forums.phpfreaks.com/topic/13954-include-problems-quite-weird/ Share on other sites More sharing options...
paul2463 Posted July 7, 2006 Share Posted July 7, 2006 Hi it is quite difficult to answer without seeing the folder make ups, if they are both in the same folder i.e htdocs/supplier then the include statement should be[code]include ("supplierfunctions.php");[/code]note the inclusion of the .php which your origonal include did not haveif they are in different folders i.e the calling page is not in the same folder as supplierfunctions.php you could try[code]include ("../Supplier/supplierfunctions.php");[/code]see how you get on Quote Link to comment https://forums.phpfreaks.com/topic/13954-include-problems-quite-weird/#findComment-54403 Share on other sites More sharing options...
genista Posted July 7, 2006 Author Share Posted July 7, 2006 OK I am such a NOOB, solved. Quote Link to comment https://forums.phpfreaks.com/topic/13954-include-problems-quite-weird/#findComment-54406 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.