You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To learn more, see the [corresponding security advisory](https://developers.ibexa.co/security-advisories/ibexa-sa-2025-004-xss-and-enumeration-vulnerabilities-in-back-office).
To learn more, see the [corresponding security advisory](https://developers.ibexa.co/security-advisories/ibexa-sa-2025-004-xss-and-enumeration-vulnerabilities-in-back-office).
### Form Builder performance fix: missing indexes on form submission data [[% include 'snippets/experience_badge.md' %]] [[% include 'snippets/commerce_badge.md' %]]
433
+
434
+
In large production databases, the `ezform_form_submissions` and `ezform_form_submission_data` tables may contain a lot of rows.
435
+
Missing indexes can cause high CPU load and slow queries.
436
+
437
+
Run the provided SQL upgrade script to add the missing indexes to your database:
438
+
439
+
=== "MySQL"
440
+
441
+
``` bash
442
+
mysql -u <username> -p <password> <database_name> < vendor/ibexa/installer/upgrade/db/mysql/ibexa-4.6.24-to-4.6.25.sql
Copy file name to clipboardExpand all lines: docs/update_and_migration/from_5.0/update_from_5.0.md
+21Lines changed: 21 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -128,3 +128,24 @@ On Commerce, run this additional update queries:
128
128
CREATE INDEX ibexa_discount_indexed_at_idx
129
129
ON ibexa_discount (indexed_at);
130
130
```
131
+
132
+
## v5.0.3
133
+
134
+
### Form Builder performance fix: missing indexes on form submission data [[% include 'snippets/experience_badge.md' %]][[% include 'snippets/commerce_badge.md' %]]
135
+
136
+
In large production databases, the `ibexa_form_submission` and `ibexa_form_submission_data` tables may contain a lot of rows.
137
+
Missing indexes can cause high CPU load and slow queries.
138
+
139
+
Run the provided SQL upgrade script to add the missing indexes to your database:
140
+
141
+
=== "MySQL"
142
+
143
+
``` sql
144
+
mysql -u <username> -p <password> <database_name> < vendor/ibexa/installer/upgrade/db/mysql/ibexa-5.0.2-to-5.0.3.sql
0 commit comments