Article Caption, database set to (100) ??

Article Caption, database set to (100), client needs more, like setting to 255

3 caption varchar(255) utf8_general_ci

ALTER TABLE `bx_arl_entries` CHANGE `caption` `caption` VARCHAR( 255 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '';

Changing this setting does not work, please check.

ManOfTeal.COM a Proud UNA site, six years running strong!
Quote · 19 Jan 2014

 

Article Caption, database set to (100), client needs more, like setting to 255

3 caption varchar(255) utf8_general_ci

ALTER TABLE `bx_arl_entries` CHANGE `caption` `caption` VARCHAR( 255 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '';

Changing this setting does not work, please check.

 
I believe the max length is actually 64 which is the coded default.

To increase it try this. I have not tested but should work.

Edit modules\boonex\articles\classes\BxArlData.php

Look for this

        $this->_aForm['inputs']['snippet']['checker']['params'][1] = $this->_oModule->_oConfig->getSnippetLength();

Add this under it.

        $this->_aForm['inputs']['caption']['checker']['params'][1] = 250;


https://www.deanbassett.com
Quote · 19 Jan 2014

 

 

Article Caption, database set to (100), client needs more, like setting to 255

3 caption varchar(255) utf8_general_ci

ALTER TABLE `bx_arl_entries` CHANGE `caption` `caption` VARCHAR( 255 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '';

Changing this setting does not work, please check.

 
I believe the max length is actually 64 which is the coded default.

To increase it try this. I have not tested but should work.

Edit modules\boonex\articles\classes\BxArlData.php

Look for this

        $this->_aForm['inputs']['snippet']['checker']['params'][1] = $this->_oModule->_oConfig->getSnippetLength();

Add this under it.

        $this->_aForm['inputs']['caption']['checker']['params'][1] = 250;


 http://www.boonexsupport.com/thread-213-post-420.html#pid420

ManOfTeal.COM a Proud UNA site, six years running strong!
Quote · 19 Jan 2014
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.