You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You seem to have an issue in the latest version,
function init_db at Loader.php:238 try to access DB::DEFAULT_CONNECTION_NAME
but DB.php is never included or required.
This cause an "Fatal error: Class 'DB' not found".
I solved it just by adding
require_once LIBRARY_DIR . "DB.php";
You seem to have an issue in the latest version,
function init_db at Loader.php:238 try to access DB::DEFAULT_CONNECTION_NAME
but DB.php is never included or required.
This cause an "Fatal error: Class 'DB' not found".
I solved it just by adding
require_once LIBRARY_DIR . "DB.php";
at Loader.php:20