I'm having problems accessing my phpmyadmin.
I have all of my manage servers running on XAMPP and when i go to localhost/phpmyadmin I'm given the same error as this title.
I've seen there is loads of permissions you can change on the files in xampp. However the question is what is the right one to change and what is the command?
Ta
function checkPermissions()
{
// Check for permissions (on platforms that support it):
if ($this->get('CheckConfigurationPermissions')) {
$perms = @fileperms($this->getSource());
if (!($perms === false) && ($perms & 2)) {
// This check is normally done after loading configuration
$this->checkWebServerOs();
if ($this->get('PMA_IS_WINDOWS') == 0) {
$this->source_mtime = 0;
PMA_fatalError(
__(
'Wrong permissions on configuration file, '
. 'should not be world writable!'
)
);
}
}
}
}