简体   繁体   中英

What does $config mean

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:

$config['pathSrcInclude']

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:

include_once("src/common.inc.php");

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 the pathSrcInclude 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).

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM