Cupara Well-known member Dec 12, 2017 #1 Affected version 2.0.0 Not sure if this is a bug or just something I'm missing since error messages are not really explanatory when popping up. I have no idea where the characters refer. I have disabled all my add-ons and tried but still the same issue.
Not sure if this is a bug or just something I'm missing since error messages are not really explanatory when popping up. I have no idea where the characters refer. I have disabled all my add-ons and tried but still the same issue.
Chris D XenForo developer Staff member Dec 12, 2017 #2 What's the add-on ID for this add-on? Is it longer than 25 characters? It seems the entity has a max length of 25 characters there, even though we support add-on IDs up to 50.
What's the add-on ID for this add-on? Is it longer than 25 characters? It seems the entity has a max length of 25 characters there, even though we support add-on IDs up to 50.
Chris D XenForo developer Staff member Dec 12, 2017 #3 Pretty sure that was it. To change it locally edit src/XF/Entity/BbCode.php and change: PHP: 'addon_id' => ['type' => self::BINARY, 'maxLength' => 25, 'default' => ''] to: PHP: 'addon_id' => ['type' => self::BINARY, 'maxLength' => 50, 'default' => '']
Pretty sure that was it. To change it locally edit src/XF/Entity/BbCode.php and change: PHP: 'addon_id' => ['type' => self::BINARY, 'maxLength' => 25, 'default' => ''] to: PHP: 'addon_id' => ['type' => self::BINARY, 'maxLength' => 50, 'default' => '']
Cupara Well-known member Dec 12, 2017 #4 Thank you @Chris D I'll change that and see what happens. EDIT: That was the issue, fixed and working now. Thank you very much.
Thank you @Chris D I'll change that and see what happens. EDIT: That was the issue, fixed and working now. Thank you very much.