Log in

View Full Version : need help urgent please


kandip
04-03-2007, 01:42 AM
Hello..

I am getting this error when I add or update a forum.


Invalid SQL:
INSERT INTO vb_forum
(title_clean, title, description_clean, description, link, displayorder, parentid, daysprune, defaultsortfield, defaultsortorder, showprivate, newpostemail, newthreademail, options, styleid, password, accessf_nb, accesst_nb, create_nb, reply_nb, fdebates, mimicbotrop, is_diary, alowmedia)
VALUES
('Hollywood/English Movies', 'Hollywood/English Movies', '', '', '', 1, -1, -1, 'lastpost', 'desc', 0, '', '', 97991, 0, '', 0, 0, 0, 0, 0, '0', 0, 1);

MySQL Error : Unknown column 'mimicbotrop' in 'field list'
Error Number : 1054


I have quite a few hacks installed, so I dont know which hack this unknown column belongs to. :-s Please please asap..

thanks in advance.

notrious
04-03-2007, 02:42 AM
never seen that yar no idea about det

MrPeace
04-03-2007, 04:45 AM
Keep note of the hacks you have installed and always remember the last one added... if problems appear it is always most likely that youve installed the last mod improper or the mod has issues with your board :P

Michael Biddle
04-03-2007, 05:32 AM
it is missing the table mimicbotrop, add that field into your sql, and it *should* work

kandip
04-04-2007, 01:41 AM
it is missing the table mimicbotrop, add that field into your sql, and it *should* work

how do you add this table to the sql..

can you please post the sql queries to be added.. thanks

Michael Biddle
04-04-2007, 04:33 AM
something like this into your phpmyadmin, or run through sql query in acp:

ALTER TABLE vb_forum ADD mimicbotrop varchar(10) NOT NULL

kandip
04-04-2007, 11:39 AM
something like this into your phpmyadmin, or run through sql query in acp:

ALTER TABLE vb_forum ADD mimicbotrop varchar(10) NOT NULL

great, thanks alot.