I am picking up POP mail and when I run the gateway.php I get the following error:
Quote:
Database error in vBulletin 3.0.7:
Invalid SQL:
SELECT post.*, thread.*,
post.dateline AS postdateline, post.msgid AS postmsgid,
thread.title AS threadtitle, post.visible AS postvisible,
thread.visible AS threadvisible
FROM vb_post as post LEFT JOIN vb_thread as thread
ON (thread.threadid = post.threadid
AND post.userid = thread.postuserid
AND post.postid = thread.firstpostid)
WHERE post.isusenetpost = 0
AND post.postid > 49509
AND thread.forumid = 32
mysql error: Unknown column 'post.msgid' in 'field list'
mysql error number: 1054
|
I do not have msgid column and all my tables have a prefix "vb_post" not "post"
What am I doing wrong?