Quote:
Originally Posted by mickknutson
I keep getting this error:
Code:
Database error in vBulletin 4.1.4:
Invalid SQL:
INSERT IGNORE INTO tagcontent (tagid, contenttypeid, contentid, userid, dateline) VALUES (466, 2, 17216, blinc, 1310122976);
MySQL Error : Unknown column 'blinc' in 'field list'
Error Number : 1054
Request Date : Friday, July 8th 2011 @ 04:02:56 AM
Error Date : Friday, July 8th 2011 @ 04:03:07 AM
Script : http://www.blincmagazine.com/forum/cron.php?rand=1310122970
Referrer : http://www.blincmagazine.com/forum/news-feeds/48782-wingsuit-lecture-voss-kulturhus.html
IP Address : 88.190.23.224
Username : Unregistered
Classname : vB_Database
MySQL Version :
blinc is the username the thread http://www.blincmagazine.com/forum/n...kulturhus.html was published by through RSS.
|
Imn tagger userid is taken by:
PHP Code:
$userid = $vbulletin->userinfo['userid'];
And this gives number not string. In your case the issue is because as userid you have set 'blinc'. Please make sure that nothing is changing your vBulletin userinfo. I just checked all places of tagger code where such query is executed - userid is taken same way. So this is probably some other mod issue. According to vBulletin architecture $vbulletin->userinfo['userid'] should give you user id - number not string (username). Please check for conflicts with other mods.