It seems as the catagoryid was not passed through, so then catagoryid was blank.
I am not really sure how to fix your hit problem, but try doing this, in links.php
fnd:
PHP Code:
if ($noshutdownfunc) {
$DB_site->query("UPDATE gportal_weblinkslink SET hits=hits+1 WHERE linkid='$id'");
} else {
$shutdownqueries[]="UPDATE LOW_PRIORITY gportal_weblinkslink SET hits=hits+1 WHERE linkid='$id'";
}
replace with
PHP Code:
$DB_site->query("UPDATE gportal_weblinkslink SET hits=hits+1 WHERE linkid='$id'");
Also can you please PM me your site url.
Thanks