# Disinstallazione

La disinstallazione di un modulo dentro Magento 1.x è molto semplice: basta cancellare i files che compongono il modulo. Partendo dalla struttura dei files presente nel pacchetto compresso ricevuto dopo l'acquisto, bisogna accedere via FTP e cancellare i singoli file e cartelle. Successivamente aprire il proprio database collegato a Magento e cancellare le occorrenze legate alla configurazione del modulo per rendere il proprio archivio pulito.

{% hint style="info" %}
**DISCLAIMER**: Non consigliamo di eseguire le query se non si è esperti di archivi! La Shine Software non si assume alcuna responsabilità sulle prassi adottate dai clienti per eseguire operazioni direttamente nel database.
{% endhint %}

Per cancellare i dati presenti dentro il database basta eseguire i seguenti comandi facendo sempre molta attenzione alla risposta da parte del MySQL.

{% hint style="info" %}
**ATTENZIONE: Prima di ogni operazione sull'archivio consigliamo di effettuare un Backup dei dati!**
{% endhint %}

**Query per Magento 1.9.x**

> DELETE from eav\_attribute where attribute\_code = 'house\_extension'; DELETE from eav\_attribute where attribute\_code = 'housenumber'; DELETE from eav\_attribute where attribute\_code = 'streetnumber'; DELETE from eav\_attribute where attribute\_code = 'social\_security\_number'; ALTER TABLE sales\_flat\_quote\_address DROP 'streetnumber'; ALTER TABLE sales\_flat\_quote\_address DROP 'housenumber'; ALTER TABLE sales\_flat\_quote\_address DROP 'house\_extension'; DROP TABLE bancasella\_token; DROP TABLE bancasella\_mybank; DELETE from core\_config\_data where path like 'payment/bancasella%';


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.bancasella.shinesoftware.it/magento-1/installazione-e-aggiornamento/disinstallazione.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
