Phpbb3 version 3.0.8
Php - 5
Yesterday, am Installed the 2.0.0b1 portal version successfully, But, the portal page and front page not loading like, Blank Page Shown.
ERROR Pages : wwww.padukai.com/portal.php & www.padukai.com
The other pages are working well, like board Index.
The Error Logs :
PHP Fatal error: Maximum execution time of 30 seconds exceeded in /home/padukaic/public_html/includes/utf/utf_tools.php on line 225
Error Logs - Portal 2.0.0b1
Forum rules
Before creating a new support thread, please take a look at the board3 Portal FAQ and use the search!
Many questions have already been answered.
Before creating a new support thread, please take a look at the board3 Portal FAQ and use the search!
Many questions have already been answered.
-
- Active Member
- Posts: 1
- Joined: 13. March 2012 18:39
- phpBB.de User: skybound
- phpBB.com User: skybound
Re: Error Logs - Portal 2.0.0b1
I get the same on 3.0.10
Have tried using automod and manual hand installation.
Have followed the code and seems to hang here:
In particular the return mb_substr($str, $offset, $length); bit.
It timesout.
Have tried using automod and manual hand installation.
Have followed the code and seems to hang here:
Code: Select all
function utf8_substr($str, $offset, $length = null)
{
if (is_null($length))
{
return mb_substr($str, $offset);
}
else
{
return mb_substr($str, $offset, $length);
}
}
It timesout.