Upgrade to Joomla 3.5
Successful upgrade
ERROR: syntax error at or near ""#__contentitem_tag_map_idx_tag"" LINE 1: ALTER TABLE "#__contentitem_tag_map" DROP INDEX "#__conten... ^SQL=ALTER TABLE "#__contentitem_tag_map" DROP INDEX "#__contentitem_tag_map_idx_tag";
The system tells me that it has upgraded to Joomla 3.5. When I use the site it seems to work. All pages show without crashing.
I did not get the message about submitting information to Joomla (once always etc) which I got from my mariaDB site.
systeminfo-2016-03-23T05-31-06+00-00.txt
JoomlaUpgradeERror.docx
See attached files.
Category | ⇒ | Postgresql |
Labels |
Added:
?
|
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2016-03-26 15:33:56 |
Closed_By | ⇒ | brianteeman |
Closed as we have a PR #9602
Confirmed. I made a fresh joomla 3.4.8 installation, updated to 3.5 and get the same error you are reporting.
In file 3.5.0-2015-10-26.sql there are two alter table commands
ALTER TABLE "#__contentitem_tag_map" DROP INDEX "#__contentitem_tag_map_idx_tag";
ALTER TABLE "#__contentitem_tag_map" DROP INDEX "#__contentitem_tag_map_idx_type";
When changed to
DROP INDEX "#__contentitem_tag_map_idx_tag";
DROP INDEX "#__contentitem_tag_map_idx_type";
the should do the job.