Some people are reporting the following error message:
Warning: mysql_get_server_info(): supplied argument is not a valid MySQL-Link resource in [some path]/plugins/system/blueflame/bfDBUtils.php on line 16
This only happens on some servers :-) The solution is to edit the file
/plugins/system/blueflame/bfDBUtils.php
and replace this code:
$str = mysql_get_server_info ( bfCompat::getDBO ()->_resource );
if (ereg ( '4.0', $str )) {
define ( '_BF_MYSQL', '4.0' );
echo 'Running MySQL 4.0 - This is a VERY old MySQL Version - Please Get Your Web Hosting Company To Upgrade!
';
} else {
define ( '_BF_MYSQL', '4.1' );
}
with this code:
define ( '_BF_MYSQL', '4.1' );


mysql_get_server_info supplied argument is not a valid MySQL Link resource


Leave A Comment
Email This Article
My Notes
Article Information





