__autoload magic fonksiyonu phpv8 itibarı ile kaldırıldı. Fonksiyonun olduğu kısmı aşağıdaki gibi değiştirin:
spl_autoload_register(function($sinif_adi) {
    global $sistem;
    $int = 0;
    global $dizinler;
    foreach($dizinler as $dizin)
    {
        if(file_exists($dizin."/".$sinif_adi.".class.php")){
            require_once $dizin."/".$sinif_adi.".class.php";
            $int++;
        }
    }
    if($int == 0){
        $sistem->dosya->DosyaLog("Auto Load Hatasi : $sinif_adi adlı sinif bulunamadi");
    }
});