PDA

View Full Version : errors with bbs


nafae
11-27-2001, 06:40 PM
If you know how to fix this, i would be greatful :D I have the following hacks: welcome panel, view pm's, remove location if no location is entered... i think thats all of em.. thanks in advance for the assistance.

=====the error====================== :stupid:
Warning: Offset 0 is invalid for MySQL result index 25 in /home/rpgc/public_html/forums/admin/db_mysql.php on line 187

Warning: Offset 0 is invalid for MySQL result index 25 in /home/rpgc/public_html/forums/admin/db_mysql.php on line 187

here is the url of the error:

http://www.rpgc.net/forums/showthread.php?threadid=12

nafae
11-27-2001, 07:07 PM
hrm anyone seen this probleM?

Admin
11-28-2001, 10:10 AM
First try to run repair.php from the extars folder in your vBulletin zip file.

If that doesn't help, open up db_mysql.php, and find this line:
$this->record = mysql_fetch_array($this->query_id);
And replace it with this:
$this->record = @mysql_fetch_array($this->query_id);
This should help...

nafae
11-28-2001, 05:55 PM
heh i already reinstalled vb now but ty anyways :(

afterlab
12-31-2001, 05:56 AM
I get this same error too.. I tried both things, and neither fixed it.

Mine is of 5 lines at the top of the forums.. Seems to be in header.

Warning: Offset 0 is invalid for MySQL result index 29 in /home/sites/site2/web/admin/db_mysql.php on line 187

LINK: http://forums.ffrepublic.com/showthread.php?s=&postid=9899#post9899

Admin
12-31-2001, 12:23 PM
It's these damn smilies...
In db_mysql.com replace:
return mysql_data_seek($this->query_id, $pos);
with:
return @mysql_data_seek($this->query_id, $pos);

afterlab
12-31-2001, 07:15 PM
Already tried that.