No such file or directory

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
sensiblepcs
Forum Newbie
Posts: 1
Joined: Fri Aug 10, 2007 8:35 am

Post by sensiblepcs »

Warning: require_once(C:\wamp\www\calendar\lib/../config/config.php) [function.require-once]: failed to open stream: No such file or directory in C:\wamp\www\calendar\lib\CmnFns.class.php on line 14

Fatal error: require_once() [function.require]: Failed opening required 'C:\wamp\www\calendar\lib/../config/config.php' (include_path='.;C:\php5\pear') in C:\wamp\www\calendar\lib\CmnFns.class.php on line 14


I am trying to set this up but come up with this error, i am new to this so any help would be great



Steve
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

This thread was split from viewtopic.php?t=70513
User avatar
kaszu
Forum Regular
Posts: 749
Joined: Wed Jul 19, 2006 7:29 am

Post by kaszu »

File "C:\wamp\www\calendar\lib/../config/config.php" doesn't exist.
I think this path translates into "C:/wamp/www/calendar/config/config.php"
User avatar
superdezign
DevNet Master
Posts: 4135
Joined: Sat Jan 20, 2007 11:06 pm

Post by superdezign »

sensiblepcs wrote:Warning: require_once(C:\wamp\www\calendar\lib/../config/config.php) [function.require-once]: failed to open stream: No such file or directory in C:\wamp\www\calendar\lib\CmnFns.class.php on line 14

Fatal error: require_once() [function.require]: Failed opening required 'C:\wamp\www\calendar\lib/../config/config.php' (include_path='.;C:\php5\pear') in C:\wamp\www\calendar\lib\CmnFns.class.php on line 14
It means that the file doesn't exist. You sure that's the correct path? PHP wouldn't lie to you. :P
Post Reply