The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#11
|
||||
|
||||
Yep, you are right. I didn't think about that when I wrote it (and don't have another plugin using that location, so I haven't had problems.... yet!).
|
#12
|
|||
|
|||
Ok, I am starting over from scratch and trying to slowly build the plugin back to what it was. But, of course, I am running into problems right away.
PHP Code:
Any ideas?!? EDIT: Here is the actual error I am getting... Code:
Database error in vBulletin 3.8.2: Invalid SQL: SELECT post.*, post.username AS postusername, post.ipaddress AS ip, IF(post.visible = 2, 1, 0) AS isdeleted, user.*, userfield.*, usertextfield.*, icon.title as icontitle, icon.iconpath, avatar.avatarpath, NOT ISNULL(customavatar.userid) AS hascustomavatar, customavatar.dateline AS avatardateline,customavatar.width AS avwidth,customavatar.height AS avheight, spamlog.postid AS spamlog_postid, deletionlog.userid AS del_userid, deletionlog.username AS del_username, deletionlog.reason AS del_reason, editlog.userid AS edit_userid, editlog.username AS edit_username, editlog.dateline AS edit_dateline, editlog.reason AS edit_reason, editlog.hashistory, postparsed.pagetext_html, postparsed.hasimages, sigparsed.signatureparsed, sigparsed.hasimages AS sighasimages, sigpic.userid AS sigpic, sigpic.dateline AS sigpicdateline, sigpic.width AS sigpicwidth, sigpic.height AS sigpicheight, IF(displaygroupid=0, user.usergroupid, displaygroupid) AS displaygroupid, infractiongroupid ,garage_user_vehicle.user_id AS garageuser FROM vb_post AS post LEFT JOIN vb_user AS user ON(user.userid = post.userid) LEFT JOIN vb_userfield AS userfield ON(userfield.userid = user.userid) LEFT JOIN vb_usertextfield AS usertextfield ON(usertextfield.userid = user.userid) LEFT JOIN vb_icon AS icon ON(icon.iconid = post.iconid) LEFT JOIN vb_avatar AS avatar ON(avatar.avatarid = user.avatarid) LEFT JOIN vb_customavatar AS customavatar ON(customavatar.userid = user.userid) LEFT JOIN vb_spamlog AS spamlog ON(spamlog.postid = post.postid) LEFT JOIN vb_deletionlog AS deletionlog ON(post.postid = deletionlog.primaryid AND deletionlog.type = 'post') LEFT JOIN vb_editlog AS editlog ON(editlog.postid = post.postid) LEFT JOIN vb_postparsed AS postparsed ON(postparsed.postid = post.postid AND postparsed.styleid = 1 AND postparsed.languageid = 1) LEFT JOIN vb_sigparsed AS sigparsed ON(sigparsed.userid = user.userid AND sigparsed.styleid = 1 AND sigparsed.languageid = 1) LEFT JOIN vb_sigpic AS sigpic ON(sigpic.userid = post.userid) LEFT JOIN vb_garage_makes AS makes ON(garage_user_vehicle.make_id = garage_makes.id) WHERE post.postid IN (0,1) ORDER BY post.dateline; MySQL Error : Unknown column 'garage_user_vehicle.user_id' in 'field list' Error Number : 1054 Request Date : Thursday, May 7th 2009 @ 05:18:47 PM Error Date : Thursday, May 7th 2009 @ 05:18:47 PM Script : http://bszopi.net/showthread.php?t=1 Referrer : http://bszopi.net/forumdisplay.php?f=2 IP Address : xxx.xxx.xxx.xxx Username : bszopi Classname : vB_Database MySQL Version : 5.0.67-community |
#13
|
|||
|
|||
By judging from your first post 'garage_user_vehicle' is another table, you are not joining that table into the query so how is Mysql supposed to know what you are looking for. You are only including the 'garage_makes' table.
|
#14
|
|||
|
|||
So my first LEFT JOIN using the showthread_query hook needs to be to include 'garage_user_vehicle' then? Let me go try that...
Yeah, that didn't work either... PHP Code:
--------------- Added [DATE]1241738473[/DATE] at [TIME]1241738473[/TIME] --------------- Ok finally figured it out! Now to continue on with the rest of the queries... --------------- Added [DATE]1241747134[/DATE] at [TIME]1241747134[/TIME] --------------- Ok, I am finally back to the original issue - the IF-ELSE IF-ELSE conditional not working inside the plugin. I think I have another issue with the ORDER statement, as in 1 instance I am trying to retrieve up to 10 entries, but that causes the post to repeat itself. I may just have to do away with that as an option... Anyway, here are the 2 plugins I currently have working using the showthread_query: PHP Code:
PHP Code:
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|