CiviCRM Community > Extensions

Uninstalling extensions - when it wont work

(1/1)

Eileen:
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: ---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';
--- End code ---

For a specific extension - you can find a list


--- Code: ---SELECT * FROM civicrm_option_value ov
LEFT JOIN civicrm_option_group og ON og.id = ov.option_group_id
WHERE og.name = 'system_extensions'
--- End code ---

& 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  * FROM `civicrm_payment_processor_type` ORDER BY `id` DESC
--- End code ---

Navigation

[0] Message Index

Go to full version