I am creating a wordpress blog.I had a Tutorial but i cant uderstand that what does $config['pathSrcInclude']
mean? As in:
include_once($config['pathSrcInclude']."common.inc.php");
I am getting an error like this
/Warning: include_once() [function.include]: Failed opening ‘src/common.inc.php’ for inclusion (include_path=’.:/usr/local/php5/lib/php’) in /home/content/66/8073766/html/thinkblogger.com/popups/photos.php on line 8
Please anyone know the reason behind it?
This:
is looking in an array called $config for the element pathSrcInclude
From what i’m seeing the line you have shown is trying to include a file but its not in the location submitted.
Based on the error you are getting the array element above contains this string: “src/”
So what that line is actually doing is looking for this:
Which should be the location of a file, but from the looks of your error the file isn’t there.
Hope this helps,
Chris
By what your telling, the problem seems to be the path for the file… it’s wrong and PHP generates a WARNING telling you just that!
$config
seems to be and array of configuration values, and thepathSrcInclude
should contaion the right path for the file that you are trying to include.What Chris Cummings said, plus, check your permissions on that file.
Make sure it is accessible by scripts (probably CHMOD 0755).