Edit file File name : autoload.php Content :<?php /* * * JetBackup @ package * Created By Idan Ben-Ezra * * Copyrights @ JetApps * https://www.jetapps.com * **/ defined( '__JETBACKUP__' ) or die( 'Restricted access' ); spl_autoload_register(function($className) { $parts = explode('\\', $className); if(!isset($parts[0]) || $parts[0] != 'Badcow') return false; unset($parts[0]); $path = dirname(__FILE__) . '/' . implode('/', $parts) . '.php'; if(!file_exists($path)) return false; require_once($path); return true; }); Save