-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Admin not working? #2
Comments
Is the database up? The only time I got this was when, for some reason, my DB was down. I restarted it, and it worked miraculously. |
Sorry to bump, for those looking for a solution to this in future if you are using PHP 7.3 or 7.4 a few file edits are required. I have removed line numbers as I have found that for some reason these differ depending on the original installation version and updates. The changes:In /app/database/DB_Driver.php, replace: $args = (func_num_args() > 1) ? array_splice(func_get_args(), 1) : null; with $func_args = func_get_args();
$args = (func_num_args() > 1) ? array_splice($func_args, 1) : null; In /i.php, replace: require $root . '/app/koken/Shutter/Shutter.php';
require $root . '/app/koken/Utils/KokenAPI.php'; with require_once $root . '/app/koken/Shutter/Shutter.php';
require_once $root . '/app/koken/Utils/KokenAPI.php'; In /app/koken/Shutter/Shutter.php replace: include dirname(__DIR__) . '/Utils/KokenAPI.php'; with include_once dirname(__DIR__) . '/Utils/KokenAPI.php'; |
Hi! I manage to follow the installer and it told me everything went well, but when I go to my domain/admin, there's just a black blank page and nothing else. If I go to the domain, the site appears to be up, but with no photos of course.
Do you know anything I can try to make it work? Thanks!
The text was updated successfully, but these errors were encountered: