Quote:
Originally Posted by i156
Vossi, I see you have logged in since I posted the errors that I'm constantly getting everyday. I've moved to a new server so didn't get someone to fix it yet. Can you possibly tell me why I'm getting these errors before I have to pay for someone to fix it? I'm also trying to figure out if it is worth paying to get fixed or just remove the modules from my site and just deal with losing all that content.
My latest error, few minutes ago:
|
edit the vbglossar.php
search
- line 2887
PHP Code:
$condition = ' AND name NOT REGEXP("^[a-zA-Z]")';
replace with
PHP Code:
$condition = ' AND entry.name NOT REGEXP("^[a-zA-Z]")';
- line 2892
PHP Code:
$condition = ' AND name LIKE("' . $db->escape_string_like($ltr) . '%")';
replace with
PHP Code:
$condition = ' AND entry.name LIKE("' . $db->escape_string_like($ltr) . '%")';
- in line 2947
PHP Code:
AND userid = " . intval($userid) . "
replace with
PHP Code:
AND entry.userid = " . intval($userid) . "