Quote:
Originally Posted by J98680B2423E
Check your database (using PhPMyAdmin from your site CPanel) and see if you have a table entry called "post_parsed" instead of "postparsed"
1. If you have a table entry called "post_parsed"
Open the file "admin/nominate_topic_admin.php" and scroll down to the bottom of the file.
Replace:
Code:
$vbulletin->db->query_write("DELETE FROM postparsed WHERE `postid` = '$nominationthread_postid'");
by:
Code:
$vbulletin->db->query_write("DELETE FROM post_parsed WHERE `postid` = '$nominationthread_postid'");
2. If you don't have a table entry called "post_parsed" do the following:
Open the file "admin/nominate_topic_admin.php". Scroll down to the bottom of the file and replace:
Code:
$vbulletin->db->query_write("DELETE FROM postparsed WHERE `postid` = '$nominationthread_postid'");
by:
Code:
$vbulletin->db->hide_errors();
$vbulletin->db->query_write("DELETE FROM postparsed WHERE `postid` = '$nominationthread_postid'");
$vbulletin->db->show_errors();
|
Hmm, what's the reason for either having the table or not. Don't we all have the same default vb tables?