ciao, ho installato un plugin, vorrei disabilitarlo perchè mi impedisce l'accesso al pannello amministrativo.
seguendo le istruzioni del produttore del plugin non riesco..
I've enabled the plugin and now I can't login to my admin panel. What can I do??
A: First, if you enabled the plugin without any change of default values try to login with the next link:
http://www.yourdomain.com/administrator?secure_key=secure_value If this doesn't works, you need to login into your mysql admin (phpmyadmin for example) and run the next query to disable the plugin:UPDATE #__extensions SET enabled = 0 WHERE name LIKE '%jlsecure%' AND type='plugin' AND folder='system';Replace the #__ with your table prefix. After that the plugin would be disabled.