Please Log in or Create an account to join the conversation.
Thank you for contacting our Support team!
Yes, it seems that the extension is currently trying to write the data to the database and the row size is too big.
One of the solutions may be to try and change the database table's engine to MyISAM or, as the error suggests, change the row format to DYNAMIC or COMPRESSED.
However, it's impossible for us to know which table exactly needs to be altered so it's better to contact the extension developer and ask him or her to check the matter on their side or at least let us know which tables are used by the plugin.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
How many fields do you have? There is a database limitation on this. Too many fields and you'll hit row size limits.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
ROW_FORMAT in your screenshot should be set to DYNAMIC. If it's not available then InnoDB with may not be configured with innodb_large_prefix and you'll need to contact your host if unsure how to configure that.99% if of the database is InnoDB but I cannot find any indication of if it's dynamic.
That's quite a lot of fields. Each field with storage (e.g. Custom HTML fields do not count) adds a column to _comprofiler so depending on the type of the field you may hit limits. With a properly configured InnoDB we estimate the limit to be 1000 fields, but that is dependent on a lot of factors (fieldtypes, if the field even has storage, etc..).With the already added system fields I have 169 now. I don't think there will be too many more. What is the limit? This could kill my whole project if say 200 is too many.
Please Log in or Create an account to join the conversation.