I installed phpMyAdmin 4.0.4.1
on my local develop enviroment, I set auth_type
to config
. Also I provide authentication requirements by th
ISSUE RESOLVED - I just cleared the browsing history and data for last 7 days. It solved the problem for me. Try it.
Clearing your browser cache then it will work.
To stop this issue, delete the "tmp
" folder and make a new one called "tmp
" or just clear the content.
For me this seemed to be caused by my root partition being full up, and I guess this error was triggered by php being unable to write to the session directory.
I had to turn my cookies on in my browser and it worked for me. (Using MAMP on OSX)
in file libraries/common.inc.php
line 1076
delete this part
/*
* There is no point in even attempting to process
* an ajax request if there is a token mismatch
*/
if (isset($response) && $response->isAjax() && $token_mismatch) {
$response->isSuccess(false);
$response->addJSON(
'message',
PMA_Message::error(__('Error: Token mismatch'))
);
exit;
}