Skip to content

Commit 2c8223a

Browse files
authored
Add a warning to ez Publish update instructions (#3191)
1 parent 737a1c8 commit 2c8223a

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

docs/update_and_migration/migrate_to_ibexa_dxp/migrating_from_ez_publish_platform.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,20 @@ You can then proceed with consecutive upgrades to further versions: v1.13 LTS an
3434
While we have a strict backwards compatibility focus, some deprecated API features were removed and some changes were done to internal parts of the system.
3535
See [ezpublish-kernel:doc/bc/changes-6.0.md](https://github.com/ezsystems/ezpublish-kernel/blob/v6.7.0/doc/bc/changes-6.0.md)
3636

37+
38+
!!! warning "Unsupported legacy sorting methods"
39+
40+
In older eZ Publish versions, sub-items of content items could be sorted by Class identifier (option value 6) or Class name (option value 7).
41+
These sorting methods are no longer supported in [[= product_name =]].
42+
After you migrate, trying to render the Sub-items tab of content items that are configured to use the unsupported sorting methods results in an error.
43+
44+
To mitigate the problem, before you migrate, update the affected content items to use supported sorting methods such as Name, Published, or Priority.
45+
You can identify the configurations that use unsupported sorting methods with the following SQL query:
46+
47+
```sql
48+
SELECT node_id, parent_node_id, sort_field FROM ezcontentobject_tree WHERE sort_field IN (6, 7);
49+
```
50+
3751
!!! note
3852

3953
If you're migrating from a legacy eZ Publish version, this page contains the information you need.

0 commit comments

Comments
 (0)