First, check that the file
include/locale.inc.php exists. This file is supposed to be included by include/functions.inc.php
If that file does exist, can you tell me what version of PHP you are running and what the value of the
include_path setting is in your php.ini configuration? It's possible that either this setting includes a directory with a different "locale.inc.php" file (so the wrong file gets included) or doesn't include ".".
If you can't or don't want to change your php.ini, you might try changing the line that looks like:
- Code: Select all
ini_set("include_path", dirname(__FILE__) . ":" . ini_get("include_path"));
to
- Code: Select all
ini_set("include_path", dirname(__FILE__) . ":.:" . ini_get("include_path"));
in both
install.php and
include/common.php