I get these errors when testing out one of my own database modification files:
Adding Column C_STREXCHANGESERVER... ALTER TABLE FORUM_CONFIG ADD C_STREXCHANGESERVER int NOT NULL -2147217900 | The total row size (9299) for table 'FORUM_CONFIG' exceeds the maximum number of bytes per row (8060). Rows that exceed the maximum number of bytes will not be added. Adding Column C_STREXCHANGESERVERADDR... ALTER TABLE FORUM_CONFIG ADD C_STREXCHANGESERVERADDR nvarchar (255) NOT NULL -2147217900 | The total row size (9807) for table 'FORUM_CONFIG' exceeds the maximum number of bytes per row (8060). Rows that exceed the maximum number of bytes will not be added. Adding Column C_STREXCHANGESERVER_CN... ALTER TABLE FORUM_CONFIG ADD C_STREXCHANGESERVER_CN nvarchar (50) NOT NULL -2147217900 | The total row size (9397) for table 'FORUM_CONFIG' exceeds the maximum number of bytes per row (8060). Rows that exceed the maximum number of bytes will not be added. Adding Column C_STREXCHANGESERVER_OU... ALTER TABLE FORUM_CONFIG ADD C_STREXCHANGESERVER_OU nvarchar (255) NOT NULL -2147217900 | The total row size (9807) for table 'FORUM_CONFIG' exceeds the maximum number of bytes per row (8060). Rows that exceed the maximum number of bytes will not be added. Adding Column C_STREXCHANGESERVER_O... ALTER TABLE FORUM_CONFIG ADD C_STREXCHANGESERVER_O nvarchar (255) NOT NULL -2147217900 | The total row size (9807) for table 'FORUM_CONFIG' exceeds the maximum number of bytes per row (8060). Rows that exceed the maximum number of bytes will not be added.
either your field names are too large (unlikely) or there are now too many fields in your config table.
Try using the forum_mods table to store your variables rather than using config
This is testing on a fresh copy of the database. Using a "test" forum to do the installation first. I will try to set it up with the other config table. Is that what you use in the next version?
either your field names are too large (unlikely) or there are now too many fields in your config table.
Try using the forum_mods table to store your variables rather than using config
This is testing on a fresh copy of the database. Using a "test" forum to do the installation first. I will try to set it up with the other config table. Is that what you use in the next version?