Solved my problem, now this great hack work on my forum too:
if anyone have the same problem, however this warning:
Code:
Warning: mysql_query() [function.mysql-query]: Access denied for user 'xxx'@'localhost' (using password: NO) in [path]/admincp/smnlikquick.php on line 50
Warning: mysql_query() [function.mysql-query]: A link to the server could not be established in [path]/admincp/smnlikquick.php on line 50
Warning: mysql_result(): supplied argument is not a valid MySQL result resource in [path]/admincp/smnlikquick.php on line 51
Try this edit:
In the file AdminCp/SmnLikQuick.php found (on line 50):
Code:
$announcements = mysql_query("SELECT count(*) FROM `" . TABLE_PREFIX . "smnlikquick`");
$announcement = (mysql_result($announcements, 0, 0));
replace with:
Code:
$announcement = array_pop($db->query_first("SELECT count(*) FROM `" . TABLE_PREFIX . "smnlikquick`", DBARRAY_NUM)) ;
Again in AdminCp/SmnLikQuick.php found(on line 122):
Code:
$announcements = mysql_query("SELECT count(*) FROM `" . TABLE_PREFIX . "smnlikquick`");
$announcement = (mysql_result($announcements, 0, 0));
Replace with:
Code:
$announcement = array_pop($db->query_first("SELECT count(*) FROM `" . TABLE_PREFIX . "smnlikquick`", DBARRAY_NUM)) ;
With this edit i have solved my problem, thanks to Shadab for the support