• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Acc maker problem, News Archive doesnt work.

Maziol

New Member
Joined
Jan 28, 2018
Messages
13
Reaction score
1
Hi guys, My problem started when i edit Latest news Post. After change it, site stop working. I fixed it now, and site work like should, but one things doesnt work. When i clink on News - News archive it is doesnt work, so i cant edit post and cant do nothing.

The error is: Fatal error: Maximum execution time of 30 seconds exceeded in C:\xampp\htdocs\pages\forum.php on line 106

Of course i checked it, and i dont see nothing wrong down there. Any ideas?

Line from 105 to 108

{
$url = substr($text, stripos($text, '')+5, stripos($text, '') - stripos($text, '') - 5);
$text = str_ireplace('[URL="http://'.$url"]'.$url.'', $url, $text);
}[/URL]
 
Last edited by a moderator:
Put this at the top of the page on the next line after the opening php tag change the 60 to however long you need. The 2nd argument is read in seconds.
PHP:
<?php
It should like this
PHP:
<?php
    ini_set('max_execution_time', 60); // 60 seconds
 
Back
Top