PDA

View Full Version : unromovable plug-in


zodehala
01-15-2006, 10:28 AM
i have installed plug-in is called "Browser on Who's Online" (i found it from here)

while i am uninstalling it following error is occured and the proccess is failed

how can i uninstall it ???????????????



Database error in vBulletin 3.5.3:

Invalid SQL:
ALTER TABLE `session` DROP `browser`;;

MySQL Error : Can't DROP 'browser'; check that column/key exists
Error Number : 1091
Date : Sunday, January 15th 2006 @ 06:19:10 AM
Script : http://www.xforum.com/admincp/plugin.php
Referrer : http://www.xforum.com/admincp/plugin.php?do=productdelete&productid=browser_on_wol&s=
Classname : vb_database

Paul M
01-15-2006, 12:30 PM
Well the quickest way would probably be to create a column called browser in your session table for the uninstall code to remove. This isn't necessarily the "proper" way (which would be to edit the products uninstall code). :)

akanevsky
01-15-2006, 01:40 PM
add
$db->hide_errors();
in the beginning of the product uninstall code

Deviation
01-15-2006, 09:22 PM
add
$db->hide_errors();
in the beginning of the product uninstall code
Yep. If there are multiple versions of uninstall code add it above all of them.

This basically allows vB to skip passed the errors.

zodehala
01-19-2006, 04:44 PM
add
$db->hide_errors();
in the beginning of the product uninstall code

thanks guy