M Matthew Hawley Well-known member Aug 22, 2013 #1 How would I allow more characters to be added to something in the admin cp?
Chris D XenForo developer Staff member Aug 22, 2013 #2 More characters to what specifically in the Admin CP?
M Matthew Hawley Well-known member Aug 22, 2013 #3 Chris Deeming said: More characters to what specifically in the Admin CP? Click to expand... Upgrade titles.
Chris Deeming said: More characters to what specifically in the Admin CP? Click to expand... Upgrade titles.
Chris D XenForo developer Staff member Aug 22, 2013 #4 As in, the title here? There is a maxLength value of 50 set in: XenForo_DataWriter_UserUpgrade And the database column has a maximum value of 50. That can be amended to 500 with this query: Code: ALTER TABLE `xf_user_upgrade` CHANGE COLUMN `title` `title` VARCHAR(500) NOT NULL
As in, the title here? There is a maxLength value of 50 set in: XenForo_DataWriter_UserUpgrade And the database column has a maximum value of 50. That can be amended to 500 with this query: Code: ALTER TABLE `xf_user_upgrade` CHANGE COLUMN `title` `title` VARCHAR(500) NOT NULL