To upgrade follow the steps in your website's http://mybaseurl/upgrader.php script. You will need to copy the URL of the attached file (created via the form below) during step 3.
Important
If you have existing comment topics or ratings for catalogue entries, you will need to reassociate them, as database IDs have necessarily changed.Run this SQL code in something like phpMyAdmin:
Code (SQL)
UPDATE cms_rating SET rating_for_type='catalogues' WHERE rating_for_type LIKE 'catalogues__%';
UPDATE cms_trackbacks SET trackback_for_type='catalogues' WHERE trackback_for_type LIKE 'catalogues__%';
UPDATE cms_trackbacks SET trackback_for_type='catalogues' WHERE trackback_for_type LIKE 'catalogues__%';
Code (SQL)
UPDATE cms_f_topics SET t_description=REGEXP_REPLACE(t_description,'catalogues__\\w+(_\\d+)','catalogues$1') WHERE t_description LIKE '%#catalogues__%';
Code (SQL)
UPDATE cms_f_topics SET t_description=REPLACE(t_description,'catalogues__example','catalogues') WHERE t_description LIKE '%#catalogues__%';
The following changes have been made since version 10.0.29…
- PHP 7.4 fixes:
- Issues with Comcode fields, and multi-input fields [catalogues]
- {CATEGORY_TITLE} has limited scope [catalogues]
- include_breadcrumbs has no effect on main_multi_content block for catalogue entries [catalogues]
- Usergroup field on warnings form should not be required [cns_warnings]
- Major issues with content_privacy addon [content_privacy]
- Expanding boxes may not align correctly [core]
- Suppress error mails from SQL Server [core]
- New-content notifications not sent if content_privacy bundled not installed [core]
- Redirects should not be statically cached [core]
- Error uploading certain image files [core]
- URL Moniker empty after saving and loading for edit [core]
- Support IIS response codes [core]
- InfoZip integration not working well [core]
- main_multi_content block issues [core]
- Issues with ratings [core]
- Pagination from main_multi_content block results in 1 repeated entry each time [core]
- keep_theme parameter incorrect injected into AJAX scripts [core]
- Behaviour of required upload fields unclear when editing catalogue entry [core]
- Behaviour of XHTML cleanup code is inconsistent with HTML5 cleanup algorithm [core]
- Cannot get all RSS comments, don't try [core_feedback_features]
- Menu node children inclusion bug, if using keep_* parameters [core_menus]
- Poll chosen notification missing poll name [polls]
- Static caching may interfere with iTunes detection for RSS feed [syndication]
Comments
Thank you for the update.
I am not sure if I have any "comment topics or ratings for catalogue entries" in use, I don't think I do but should I run this sql to be safe? Or run it for future use of comment topics or ratings for catalogue entries?
Cheers