https://community.moosocial.com/topics/view/896/php-increase-upload-file-size-limit
However, I checked my php.ini file and it already has post_max_size, memory_limit, and upload_max_filesize set to even higher limits than recommended.
After checking your content via database , I see that the "content" text filed is used 65,535 characters for saving it ( includes words and html code ) . It means that it is the limit of text type of mysql . For more information , you can check : https://www.electrictoolbox.com/maximum-length-mysql-text-field-types/
In case you want more than 65,534 characters , you need to customize to change the "content" from "TEXT" to " MEDIUMTEXT or LONGTEXT . If you are a developer , you can follow the guide bellow :
1. Change the type of "content" filed of Pages table from "TEXT" to "MEDIUMTEXT" or "LONGTEXT".
2. Open the source file : yoursite/app/Plugin/Page/Controller/PagePluginsController.php then insert the code :
$pageTmp = $this->Page->query("SELECT content FROM {$this->Page->tablePrefix}pages WHERE id={$id}");
if($pageTmp){
$page['Page']['content'] = $pageTmp[0]["pages"]["content"];
}
at line 50 .
3. Open the file : yoursite/app/Plugin/Page/Controller/PagesController.php then insert the code bellow :
if(isset($page["Page"]["id"])){
$pageTmp = $this->Page->query("SELECT content FROM {$this->Page->tablePrefix}pages WHERE id={$page["Page"]["id"]}");
if($pageTmp){
$page['Page']['content'] = $pageTmp[0]["pages"]["content"];
}
}
In case you don't familiar with it , you can submit a ticket to request for customization work.
I am trying to add the following content for my book citations, over 700 references containing about 900 total citations and, since I am going to be adding some new content, the page will need to ultimately contain over 1,000 hyperlinked citations. Already it's over 12,000 words. Essentially this serves as a resource for those purchasing the paperback book version to click the hyperlinked sources from.
So 3,300 or even 5,000 is not nearly enough. I make content-heavy informational pages, so for me to use MooSocial as the main base for my website which includes informational resource pages as opposed to simply a membership portal (which it currently is) I need to be able to design pages with much higher word counts.
Duy Duy (mooTechnicalTeam) Basic
When removing some lines with fewer characters I was able to get the word count over 3,300 which.. => Can you send us the content that you are trying to use when creating a new page and get "cuts off the rest" issue ?