I found out that PATH_SEPARATOR is not available before PHP 4.3.0 versions.
Please open your compat.php file and insert this at the top of the file:
Code: Select all
if (!defined('PATH_SEPARATOR')) {
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
define('PATH_SEPARATOR', ';');
} else {
define('PATH_SEPARATOR', ':');
}
}
if (!defined('DIRECTORY_SEPARATOR')) {
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
define('DIRECTORY_SEPARATOR', '\\');
} else {
define('DIRECTORY_SEPARATOR', '/');
}
}
and tell me if it works out for you.
Dakira, about your other problem: Look in your plugin configuration, I guess that all plugins are installed 5 times there? Maybe you installed s9y multiple times to the same database?
Regards,
Garvin.