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