Good solution to change PHP max_execution_time is add simple line into the code:
<?
set_time_limit(900);
if($_POST)
{
$domains = explode("\n", $_POST[domains]);
foreach($domains as $domain)
{
$domain = explode('|', $domain);
$keyword = $domain[1];
$domain =...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.