Quote:
Originally Posted by kmt
good hack....
whenever i use it, i.e., click on a flag i get this error message at top of page:
Warning: mysql_ping() [function.mysql-ping]: Access denied for user '---------'@'localhost' (using password: NO) in [path]/includes/vbenterprisetranslator_functions.php on line XXX
Warning: mysql_ping() [function.mysql-ping]: A link to the server could not be established in [path]/includes/vbenterprisetranslator_functions.php on line XXX
what should i do? kmt
|
Try this (checked on my board an is safe, but need your confirmation does it solves the issue - if yes then it will be included in official release):
1. find in /includes/vbenterprisetranslator_functions.php line with code
PHP Code:
if (!mysql_ping()) {
2. change it to this one:
PHP Code:
if (!mysql_ping($vbulletin->db->connection_recent)) {
Please give me confirmation does this solves the issue