From 1.1.8
upgrade using Mage_All_Latest tag with the cache disable
settings are set to Stable
I have Improved_Search module installed as well as languages module installed
I tested with removing Improved_Search before upgrading, but I have the same exception. ( full PDO exception attached )
ok it seems that somehow the script try to run twice, just found that on an earlier backup that I dont have catalogsearch_result into it.
for those who have this issue either
- You wait for magento to resolv this
- You just create a NEW table and import a backup that has been made before the 1.2.0 first try upgrade and try again with all cache disable.
Please specify the value of the table core_resource with code catalogindex_setup
If the version 0.7.9
run
DROP TABLE IF EXISTS catalogindex_aggregation; DROP TABLE IF EXISTS catalogindex_aggregation_tag; DROP TABLE IF EXISTS catalogindex_aggregation_to_tag;
In this case, the problem aside extension that create magento module (catalogsearch) table, which should not create
These extension, must be create tables with the extension name prefix.
Has anyone been able to get around this one? I posted the problem in a different thread before I discovered this one. Seems quite a number of people are reporting similar issues.
Just open up that file in your editor and then comment out the php code that tries to create the table.
This type of error happens when the upgrade script already ran once and it tries to run again so commenting them out is totally fine.
You will probably run into couple more of these, repeat the steps for the other files it complains about as well.
As far as I know, there is extension of finding which does not include the core, and that create a table catalogsearch_result
Therefore, before commenting creating tables - sure to create an identical table as the upgrade
If a table set up another module: is recommended to remove or rename the table and start the process of upgrade
I solved this by changing the data in the database.
Table core_resource holds current versions of all modules. It seems that it wasn’t updated during the update process.
I had to make three changes:
First I changed catalogsearch_setup from version 0.7.5 to 0.7.6 and reloaded my homepage.
Next error was about cataloginventory_setup, so I changed it from 0.7.4 to 0.7.5 and reloaded homepage
Finally, I changed cataloginventory_setup to 0.7.9. After that all was fine.
Maybe it is possible to change cataloginventory_setup to 0.7.9 right away, but don’t take my word for it.