I've installed phpMyAdmin on a VPS running Apache 2.2.15 and PHP 5.6.27 on CentOS 6.8
After allowing web access via the httpd conf file I keep getting the following message from both the index page and the setup page.
Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly. Also ensure that cookies are enabled in your browser.
All well and good, except that PHP doesn't seem to be writing any error messages to the site error log. (Its a dev site, errors are turned up high - E_ALL | E_STRICT)
How do I debug this? The config file exists (/etc/phpMyAdmin/config.inc.php) but is empty.
session.save_path; make sure it's writable by the webserver process. You could also check the webserver error log, it's more likely you'd see the error logged there than in the PHP logs.