CiviCRM Community Forums (archive)

*

News:

Have a question about CiviCRM?
Get it answered quickly at the new
CiviCRM Stack Exchange Q+A site

This forum was archived on 25 November 2017. Learn more.
How to get involved.
What to do if you think you've found a bug.



  • CiviCRM Community Forums (archive) »
  • Discussion »
  • Extensions (Moderators: mathieu, totten, kasiawaka) »
  • Uninstalling extensions - when it wont work
Pages: [1]

Author Topic: Uninstalling extensions - when it wont work  (Read 1123 times)

Eileen

  • Forum Godess / God
  • I’m (like) Lobo ;)
  • *****
  • Posts: 4195
  • Karma: 218
    • Fuzion
Uninstalling extensions - when it wont work
July 31, 2012, 04:38:15 pm
A few people have problems getting extensions OUT of 4.1.x

this is probably fixed in 4.2 so here are my 4.1.5 notes - this is to delete ALL extensions

Code: [Select]
DELETE ov FROM civicrm_option_value ov
LEFT JOIN civicrm_option_group og ON og.id = ov.option_group_id
WHERE og.name = 'system_extensions';

For a specific extension - you can find a list

Code: [Select]
SELECT * FROM civicrm_option_value ov
LEFT JOIN civicrm_option_group og ON og.id = ov.option_group_id
WHERE og.name = 'system_extensions'

& add a criteria into the delete - e.g 'AND id = 123' WHERE 123 is from the previous


You may also need to delete it from your payment processor_type table - to check

Code: [Select]
SELECT  * FROM `civicrm_payment_processor_type` ORDER BY `id` DESC
« Last Edit: July 31, 2012, 04:40:25 pm by Eileen »
Make today the day you step up to support CiviCRM and all the amazing organisations that are using it to improve our world - http://civicrm.org/contribute

Pages: [1]
  • CiviCRM Community Forums (archive) »
  • Discussion »
  • Extensions (Moderators: mathieu, totten, kasiawaka) »
  • Uninstalling extensions - when it wont work

This forum was archived on 2017-11-26.