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