******* - Addon Install Log [Deleted]

Status
Not open for further replies.

Brivium

Well-known member
******* submitted a new resource:

******* - Addon Install Log - This addon provides an easy way to view addon install/uninstall/upgrade log directly in the admin.

INFORMATION:
This addon provides an easy way to view addon install/uninstall/upgrade log directly in the admin.

INSTALLATION:
- Upload contents of Upload folder to root directory, overwriting any existing files.
- Install XML\addon-*******_AddonInstallLog.xml file.

DONATION:
If you appreciate this and want to help us, please consider to contribute to its development with a donation....

Read more about this resource...
 
Heuu, i have this erro when i uninstall or reinstall:

Screenshot_3.webp

Edit: I can not install or uninstall any add-on now ! :mad:
 
Last edited:
Hi @*******
I am getting the same error as @Allan ! Could you please help?
Try this, but save before (From *******):

Code:
CREATE TABLE `xf_*******_addon_install_log` (
                  `log_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
                  `addon_id` varchar(25) NOT NULL,
                  `title` varchar(75) NOT NULL,
                  `version_string` varchar(30) NOT NULL,
                  `version_id` int(10) unsigned NOT NULL DEFAULT '0',
                  `url` varchar(100) NOT NULL,
                  `install_callback_class` varchar(75) NOT NULL DEFAULT '',
                  `install_callback_method` varchar(75) NOT NULL DEFAULT '',
                  `uninstall_callback_class` varchar(75) NOT NULL DEFAULT '',
                  `uninstall_callback_method` varchar(75) NOT NULL DEFAULT '',
                  `ip_address` int(10) unsigned NOT NULL DEFAULT '0',
                  `user_id` int(10) unsigned NOT NULL,
                  `username` varchar(50) NOT NULL,
                  `request_date` int(10) unsigned NOT NULL DEFAULT '0',
                  `controls` varchar(75) NOT NULL DEFAULT '',
                  `status` tinyint(3) unsigned NOT NULL DEFAULT '0',
                  PRIMARY KEY (`log_id`)
                ) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8;
 
Thanks for the reply @Allan but I have no idea what you mean by 'try this'! :confused: I am a newbie so don't know anything about coding :(
In phpmyadmin, select your database, select sql tab and add the code in the box under sql tab and clic on excecute.
 
Last edited:
Status
Not open for further replies.
Top Bottom