Is there a best way to turn off phpmyadmin token checking? -


I am only working on my dev machine (home computer), which has a Ubuntu operating system. I do not want to be on the production server, I hate the token mismatched error that appears if I'm sitting phpmyadmin for a long time. Therefore, I hooked the Library / General. In CCPP for compelling the phymeidine at 483 to 486 lines, it always shows that the token is matched.

  $ token_mismatch = false; / * If (PMA_Swalid ($ _ request ['token'])) {$ token_just = ($ _SESSION ['PMA_token']! = $ _REQUEST ['token']); } * /  

Is this the best way to take care of this problem, and will it possibly punch something else?

libraries / common.inc.php

  / * $ token_mismatch = true ; "Post-text" itemprop = "text"> 

if (PMA_svalid ($ _ request ['token'])) {$ token_mismatch = ($ _SESSION ['PMA_token']! = $ _REQUEST ['token']) ; } * / $ Token_mismatch = false;


Comments