Advertisement
niammuddin

phpmyadmin blank on hhvm

Jun 26th, 2015
279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1.  
  2.  
  3. Easy fix, simply open "/usr/share/phpmyadmin/libraries/dbi/mysqli.dbi.lib.php" and find
  4.  
  5. require_once './libraries/logging.lib.php';
  6.  
  7. replace it with the following...
  8.  
  9. $GLOBALS['cfg']['Server']['port']=3306;
  10. require_once './libraries/logging.lib.php';
  11.  
  12.  
  13. http://stackoverflow.com/questions/29083074/nginx-mysql-hhvm-phpmyadmin-stuck-after-login-page-all-blank-and-token-i/29874675#29874675
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement