1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-04 18:29:40 +02:00

After 3 hours, I finally managed to fix the [synology/fast-cgi] bug that prevented __autoload to work in certain cases.

This commit is contained in:
spocky 2009-12-16 12:42:22 +00:00
parent 5b40b46ba0
commit 69c56f829d

View file

@ -40,7 +40,8 @@ $ampache_path = dirname(__FILE__);
$prefix = realpath($ampache_path . "/../");
$configfile = "$prefix/config/ampache.cfg.php";
require_once $prefix . '/lib/general.lib.php';
require_once $prefix . '/lib/class/config.class.php';
require_once $prefix . '/lib/class/config.class.php';
require_once $prefix . '/lib/class/vauth.class.php'; // Fixes synology bug with __autoload in certain cases
if (!function_exists('gettext')) {
require_once $prefix . '/modules/emulator/gettext.php';