***Assuming Server Was Installed Using the Vicibox Server ISO***
Check apache error log in /var/log/apache2/error_log
- Code: Select all
tail -9999 /var/log/apache2/error_log | grep MyAdmin
If you see something like this:
[notice] EACCELERATOR(5256): PHP crashed on opline 31 of register_shutdown_function() at /srv/www/htdocs/phpMyAdmin/phpmyadmin.css.php:28
Then you need to turn eaccelerator off for phpMyAdmin:
- Code: Select all
nano /etc/apache2/conf.d/phpMyAdmin.conf
Add this below "php_admin_value suhosin.request.max_vars 2048":
- Code: Select all
php_flag eaccelerator.enable 0
Then restart apache with:
- Code: Select all
service apache2 restart
Fixed.