imperium2335 Posted June 13, 2010 Share Posted June 13, 2010 Hi, I have recently set up apache, php and mysql. All works perfectly except for the include function which I use a lot in my scripts as it's very useful. When ever I try to use it I just get a message something like this: Warning: include(oricheck.php) [function.include]: failed to open stream: No such file or directory in D:\htdocs\test\engine\login.php on line 3 Warning: include() [function.include]: Failed opening 'oricheck.php' for inclusion (include_path='S:\Apache Software Foundation\Apache2.2\php\PEAR') in D:\htdocs\test\engine\login.php on line 3 I never have problems when I do this stuff online with a hosting company, so what do I need to do to fix this locally? I've messed around in PHP.ini for ages and still no progress. Thanks in advance. Link to comment https://forums.phpfreaks.com/topic/204664-include-function-not-working-locally/ Share on other sites More sharing options...
PFMaBiSmAd Posted June 13, 2010 Share Posted June 13, 2010 Your include_path setting is missing a . (dot) entry that would cause php to search for include files relative to the current directory. Link to comment https://forums.phpfreaks.com/topic/204664-include-function-not-working-locally/#findComment-1071527 Share on other sites More sharing options...
imperium2335 Posted June 13, 2010 Author Share Posted June 13, 2010 so ./htdocs would make it work for all websites in that folder? Link to comment https://forums.phpfreaks.com/topic/204664-include-function-not-working-locally/#findComment-1071529 Share on other sites More sharing options...
ignace Posted June 13, 2010 Share Posted June 13, 2010 No you should do as he said add a dot to your include_path, like: include_path='.;S:\Apache Software Foundation\Apache2.2\php\PEAR' Link to comment https://forums.phpfreaks.com/topic/204664-include-function-not-working-locally/#findComment-1071541 Share on other sites More sharing options...
imperium2335 Posted June 13, 2010 Author Share Posted June 13, 2010 Thanks! Can't believe that made it work. Link to comment https://forums.phpfreaks.com/topic/204664-include-function-not-working-locally/#findComment-1071543 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.