Quote:
Originally Posted by TsirhCitna
Just upgraded to 1.3:
Code:
Database error in vBulletin 3.7.2:
Invalid SQL:
DELETE FROM postparsed WHERE `postid` = '386649';
MySQL Error : Table 'tenstone_vbforum2.postparsed' doesn't exist
Error Number : 1146
Request Date : Wednesday, July 9th 2008 @ 08:51:59 AM
Error Date : Wednesday, July 9th 2008 @ 08:51:59 AM
Script : http://www.tenstones.net/forums/admincp/nominate_topic_admin.php?do=refreshpollthread
Referrer : http://www.tenstones.net/forums/admincp/index.php?do=nav
IP Address : 70.61.229.27
Username : xxx
Classname : vB_Database
MySQL Version : 5.0.45-log
|
Quote:
Originally Posted by crkgb
Updated to 1.3. Thank you for the great mod once again.
Deleted the old Poll-topic and changed the settings to the current month to be displayed.
tried to do "Refresh Poll Thread" and got the following.
Running the cron did not help either.
No Nomination topic at the moment. Any ideas?
|
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();