I bought a magento extension and copied the files into the magento directory. Everything worked great. Then I wanted to re-install it. So I deleted all relevant files in app/code/local and i deleted the relevant database tables.

When I re-copied the extension files back into the magento directory and tried to test the extension out, i get this error:

SQLSTATE[42S02]: Base table or view not found: 1146 Table 'mydb.swam_list' doesn't exist

I looked in the database and it seems magento did not re-create the database tables for the extension.

How do I re-install this extension?

link|improve this question

feedback

1 Answer

up vote 6 down vote accepted

Look in the table core_resource for an entry matching the module's name. Delete that and it will install from scratch on the next page request, possibly not until after a cache flush.

link|improve this answer
4  
more specifically, the entry in the table will be the same name as the subfolder under sql in the install files. Something like swam_setup is likely. – Jonathan Day Jan 31 '11 at 20:59
@Jonathon. I didn't know that. – clockworkgeek Jan 31 '11 at 22:00
another of Magento's somewhat obscure but mostly useful conventions! :) – Jonathan Day Feb 1 '11 at 2:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.