|
brizzad,
Edit this file:
/usr/www/virtual/brizzad/www.weedland.com/modules/coppermine/include/init.inc
Look for this line:
require('modules/coppermine/language/lang-english.php');
It may be include(), include_once(), or require_once() but you'll know it when you see it (since you can just search the file for that relative path to lang-english.php).
Replace the path to lang-english.php with an absolute path, ie
require('/usr/www/virtual/brizzad/www.weedland.com/modules/coppermine/language/lang-english.php');
Unfortunately without looking at the files/filesystem/php info I can only guess. But since you say the file exists, you might give this a try.
|