When I go to upload the XML file I get this Error
---------------------------------------------------------------------
Database error in vBulletin 3.5.4:
Invalid SQL:
### INSERT QUERY GENERATED BY fetch_query_sql() ###
INSERT INTO plugin
(`active`, `executionorder`, `title`, `hookname`, `phpcode`, `product`)
VALUES
('1', '5', 'vbimghost last 5 images - profile', 'member_complete', '$rec = $vbulletin->db->query_read(\"\r\n SELECT imgid,imgfile,thumbname,imgwidth,imgheight,imgdate \r\n FROM \".TABLE_PREFIX.\"vbimghost\r\n WHERE userid=\'$userinfo[userid]\' and imgprivate=\'0\'\r\n order by imgdate DESC\r\n LIMIT 5\r\n \"); \r\n\r\n$count = $db->num_rows($rec);\r\n\r\n$rec2 = $vbulletin->db->query_read(\"\r\n SELECT count(*) mark\r\n FROM \".TABLE_PREFIX.\"vbimghost\r\n WHERE userid=\'$userinfo[userid]\' and imgprivate=\'0\'\r\n \"); \r\n$row2 = $vbulletin->db->fetch_array($rec2);\r\nif ($count){\r\n while ($row = $vbulletin->db->fetch_array($rec)) {\r\n $vbimghost[\'id\']=$row[\'imgid\'];\r\n $vbimghost[\'path\']=$vbulletin->options[\'bburl\'].\"/\".$vbulletin->options[\'imgdir\'].\"/\".$row[\'imgfile\'];\r\n $vbimghost[\'dispath\']=$vbulletin->options[\'bburl\'].\"/vbimghost.php?do=displayimg&imgid=\".$row[\'imgid\'];\r\n $vbimghost[\'width\']=$row[\'imgwidth\'];\r\n $vbimghost[\'height\']=$row[\'imgheight\'];\r\n $vbimghost[\'date\']=date(\'Y-m-d\', $row[\'imgdate\']);\r\n if (file_exists($vbulletin->options[\'imgdir\'].\"/\".$row[\'thumbname\'])){\r\n $vbimghost[\'thumbpath\']=$vbulletin->options[\'bburl\'].\"/\".$vbulletin->options[\'imgdir\'].\"/\".$row[\'thumbname\'];\r\n $vbimghost[\'thumbsize\']=0;\r\n }else{ \r\n $vbimghost[\'thumbpath\']=$vbimghost[\'path\'];\r\n if ($row[\'imgwidth\'] <= $vbulletin->options[\'imgthumw\'])\r\n $vbimghost[\'thumbsize\']=$row[\'imgwidth\'];\r\n else \r\n $vbimghost[\'thumbsize\']=$vbimghost[\'imgthumw\'];\r\n }\r\n eval(\'$mimghost .= \"\'.fetch_template(\'vbimghost_memberbit\') . \'\";\');\r\n $vbimghost[\'more\'] = \"<a href=\'vbimghost.php?do=viewimages&id=$userinfo[userid]\'>\" .construct_phrase($vbphrase[\'vbimghost_viewmore\'],$row2[\'mark\']).\"</a>\";\r\n } \r\n}else{\r\n $vbimghost[\'more\'] = \"\";\r\n eval(\'$mimghost =\"\'.fetch_template(\'vbimghost_memberbit_noimg\' ) . \'\";\');\r\n}\r\n\r\n$vbimghost[\'last5\'] = $mimghost;\r\nunset($row);\r\nunset($row2);', 'ao_vbimghost');
MySQL Error : Unknown column 'executionorder' in 'field list'
Error Number : 1054
Date : Tuesday, December 12th 2006 @ 11:28:14 PM
Script :
http://www.XXXXXXXXXXX.com/vbulletin/admincp/plugin.php
Referrer :
http://www.XXXXXXXXXXX.com/vbulletin...?do=productadd
IP Address : XXXXXXXXXX
Username : BadRobot
Classname : vb_database
----------------------------------------------------------------------
I am attempting to install version 1.4.1
Jon