Your Portal Version: 1.0.0RC3
Your phpBB Type: Standard phpBB3
MODs installed: No
Your knowledge: Basic Knowledge
What have you done before the problem was there?
What have you already tryed to solve the problem?
Description and Message
Hi guys, is there a way to change this value above 999? In the admin panel it only allow a 3digit integer and if I wanted to change it say to 1500 I can't. Thanks in advance.
Max length of news article
Forum rules
Before creating a new support thread, please take a look in the board3 Portal FAQ and use the search!
Many questions have already been answered.
Before creating a new support thread, please take a look in the board3 Portal FAQ and use the search!
Many questions have already been answered.
-
- Dev
- Posts: 2504
- Joined: 17. July 2008 21:08
- phpBB.de User: marc1706
- phpBB.com User: Marc
- Location: Clausthal-Zellerfeld / München
- Contact:
Re: Max length of news article
If you want to allow 1500, why don't you just disable that feature?
Re: Max length of news article
Because I have really big articles around 3000ish.
-
- Dev
- Posts: 2504
- Joined: 17. July 2008 21:08
- phpBB.de User: marc1706
- phpBB.com User: Marc
- Location: Clausthal-Zellerfeld / München
- Contact:
Re: Max length of news article
Try this:
Open includes/acp/acp_portal.php
Find:
Replace with:
Open includes/acp/acp_portal.php
Find:
Code: Select all
'portal_news_length' => array('lang' => 'PORTAL_NEWS_LENGTH', 'validate' => 'int', 'type' => 'text:3:3', 'explain' => true),
Code: Select all
'portal_news_length' => array('lang' => 'PORTAL_NEWS_LENGTH', 'validate' => 'int', 'type' => 'text:10:200', 'explain' => true),
Re: Max length of news article
Thanks!
What does the 10 and 200 mean though?
What does the 10 and 200 mean though?
-
- Dev
- Posts: 2504
- Joined: 17. July 2008 21:08
- phpBB.de User: marc1706
- phpBB.com User: Marc
- Location: Clausthal-Zellerfeld / München
- Contact:
Re: Max length of news article
It defines the text length, but I really have no idea what it exactly means.