Menu Content

Support

> Forums, FAQs & Paid Support
Welcome, Guest
Username Password: Remember me

manage sef urls link in administrator timing out
(1 viewing) (1) Guest
Support forum for customers who have purchased JoomSEF 3 (Joomla 1.5 compatible). Archive only, no new post can be added.

NOTE: This category has been locked. If you have purchased paid version, please, use our Support Ticket system instead. If you are using free edition, please see the Community Support section.
  • Page:
  • 1

TOPIC: manage sef urls link in administrator timing out

manage sef urls link in administrator timing out 13 years, 12 months ago #14946

I'm trying to manage my sef urls, but when I click on the link, it times out.

How do I fix this without ruining my urls?

thx
The topic has been locked.

Re:manage sef urls link in administrator timing out 13 years, 12 months ago #14947

This is the error message

Fatal error: Maximum execution time of 30 seconds exceeded in /home/angiepie/public_html/administrator/components/com_sef/models/sefurls.php on line 61
The topic has been locked.

Re:manage sef urls link in administrator timing out 13 years, 12 months ago #14959

  • pedu
  • OFFLINE
  • Posts: 177
Hi,

So, the problem is, that you are trying to show too many URLs on the page, so it takes long time (more than 30 seconds). Maybe, that you set the option to show all URLs. This usually causes this error. You can try to clear your browser cache. If it will take no effect, chnege the timeout limit in your php.ini file. After that you must restart your apache server.
ARTIO Support Team
The topic has been locked.

Re:manage sef urls link in administrator timing out 13 years, 11 months ago #15060

  • dajo
  • OFFLINE
  • Posts: 5069
Hello,

Unfortunately, this is a bug, it will be fixed in next version.
In the meantime, you can fix it yourself by changing the following lines:
while ($this->limitstart >= $total) { 
$this->limitstart -= $this->limit;
}


to:
while ($this->limitstart >= $total) { 
if ($total == 0 || $this->limit == 0) {
$this->limitstart = 0;
break;
}
$this->limitstart -= $this->limit;
}


in the reported file around line 62.

Best regards,
ARTIO Support Team
ARTIO Support Team
The topic has been locked.
  • Page:
  • 1
User Login Empty