PHP require warning says "no such file" even though the warning traces out the correct file path

109 Views Asked by At

I am trying to require a file in a different folder, but php keeps saying the file does not exist.

"Warning: require_once(./include/config.php): failed to open stream: No such file or directory in C:\xampp\htdocs\MyProject\include\members.php on line 2"

Other pages have been able to access this file without issue, but when it's in the scripts folder instead of the home folder or the include folder, it says the file does not exist. The path that is output in this error is correct, so why is it failing?

2

There are 2 best solutions below

0
On

Alright, I found the problem. The issue was actually an require within the file I was trying to include. I guess since the required file was being called outside of its folder, I had to include the full file path for the file that the required file was requiring.

This might be a sign that I have too much spaghetti-code... Thanks for all the help though. :)

0
On

if you need to back use ../

For example: require_once("../include/config.php")