I need to increase the maximun articles lenght.

Hello Everyone,

I have a very urgent issue to resolve: how is it possible to increae the maximum lenght of articles? I need far more than what the limit is now.

I've tried to change the settings in ADVANCED SETTINGS --> and I've set maximum MESSAGE CHARACTERS from 1500 to 10.000.

Cleared the cash. However it does not work.

Any suggestion?

Alex

 

 

Quote · 7 Nov 2010

Really nobody has a suggestion about this issue?

I'm really stuck with this.....!

Please help!

Quote · 7 Nov 2010

I don't want to keep begging for help, but does anybody know how to simply increase the size/length of an article in terms of characters?

I'm stuck since over a week and this issue is really having a bad impact on my traffic.

Please help!!!

Thanks

Quote · 15 Nov 2010

Hello open the -  modules\boonex\articles\classes\BxArlData.php

find this code line :

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

 

and add these code lines after :

$this->_aForm['inputs']['content']['checker']['params'][0] = 1500; //min
$this->_aForm['inputs']['content']['checker']['params'][1] = 10000; //max

PS: If possible do not write me personally, please try to ask on the forum first
Quote · 15 Nov 2010

Thanks SashaE,

actually the snippet was already there. So I tougth that I did alreadt reach 10000 symbols and I've changed to 40.000.

But it still does not work. Any other suggestions?

I'm going crazy with this issue...!

Quote · 15 Nov 2010

This worked just fine for me.  Thanks SashaE!

Quote · 5 Apr 2011

Hello SashaE,

I've changed the file as you suggested but it still does not work to increase ARTICLE PAGES lenght. Once a page passes a certain amount of characters, the article text either disappers or the page gets totally twisted.

I need to fit for examples this calendar pages 1 - 2 - 3 ......all in a single article page.

This is how my modules\boonex\articles\classes\BxArlData.php file looks like;

---------------------------------------------------------------------------------

bx_import('BxDolTextData');

class BxArlData extends BxDolTextData {
    function BxArlData(&$oModule) {
        parent::BxDolTextData('articles', $oModule->_oConfig->getUri());

        $this->_oModule = &$oModule;

        $this->_aForm['params']['db']['table'] = $this->_oModule->_oDb->getPrefix() . 'entries';
        $this->_aForm['form_attrs']['action'] = BX_DOL_URL_ROOT . $this->_oModule->_oConfig->getBaseUri() . 'admin/';
        $this->_aForm['inputs']['author_id']['value'] = 0;

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

        $this->_aForm['inputs']['snippet']['checker']['params'][0] = 10;
        $this->_aForm['inputs']['snippet']['checker']['params'][1] = 1000000 ;
       

        $this->_aForm['inputs']['content']['checker']['params'][0] = 10;
        $this->_aForm['inputs']['content']['checker']['params'][1] = 1000000;

        $this->_aForm['inputs']['allow_comment_to'] = array(
            'type' => 'hidden',
            'name' => 'comment',
            'value' => 0,
            'db' => array (
                'pass' => 'Int',
            ),
        );
        $this->_aForm['inputs']['allow_vote_to'] = array(
            'type' => 'hidden',
            'name' => 'vote',
            'value' => 0,
            'db' => array (
                'pass' => 'Int',
            ),

 

Anybody who could out please?

Thanks

Quote · 24 Jul 2011
 
 
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.