Answer the question
In order to leave comments, you need to log in
Why is phpmyadmin throwing a white page?
Installed phpmyadmin + nginx + php-fpm
There are no errors, for mysql all drivers are installed mysqli, pdo
server {
server_name тут IP;
error_log /var/www/log/error.log;
access_log /var/www/log/access.log;
root /var/www/;
index index.php index.html index.htm;
location ~ ^/phpmyadmin/(.+\.php)$ {
auth_basic "Enter password for access to phpmyadmin";
auth_basic_user_file /var/htpasswd;
root /var/www/;
try_files $uri = 404;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $fastcgi_script_name;
fastcgi_intercept_errors on;
include fastcgi_params;
}
location ~* ^/phpmyadmin/(.+\.(jpg|jpeg|gif|css|png|js|ico|html$
root /var/www/;
}
}
Answer the question
In order to leave comments, you need to log in
There are errors, they just don't show up on the screen.
@rpsl @sim3x @L3n1n @inkvizitor68sl only access writes empty in the logs, error output is enabled, even in the phpmyadmin config there is error output.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question