Quote:
|
Originally Posted by KevinH Seems you've got a dup path in the volume table. Can you login to MySQL manually and dump that table. Might have to remove a path to get the update to run. |
Here's the detail of how to implement KevinH's suggested workaround:
NOTE: If you have already attempted to upgrade to 3.1, you will need to revert to a backup of your M2 installation before continuing.
First, switch to the zimbra account:
Next, launch the mysql client utility:
Tell mysql that you want to work on the zimbra database:
Drop the index called i_name:
Code:
alter table volume
drop index i_name;
Drop the index called i_path:
Code:
alter table volume
drop index i_path;
Quit the mysql client utility:
Finally, switch back to the root account:
You should now be able to successfully upgrade from M2 to 3.1.