Menu Content

Support

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

Max execution time of 30 seconds exceeded 3.7.4
(1 viewing) (1) Guest
Support forum for users using free edition of JoomSEF 3 (Joomla 1.5 compatible). These forums are mainly for mutual help between users.

Please note that due to our capacity limitations, we do not monitor these forums regularly.
  • Page:
  • 1
  • 2

TOPIC: Max execution time of 30 seconds exceeded 3.7.4

Max execution time of 30 seconds exceeded 3.7.4 14 years, 1 month ago #15014

  • ssnobben
Hi

I have a problem with v 3.7.4 with "Maximum execution time of 30 seconds exceeded" that happens when I try to update urls in the back end , button..

Fatal error: Maximum execution time of 30 seconds exceeded in /home/site/public_html/administrator/components/com_sef/models/sefurls.php on line 62

What can I do? I have also removed all urls in db backend but still got this error. Can I make it 60 sec or something but where to do it?

rgds

Re:Max execution time of 30 seconds exceeded 3.7.4 14 years, 1 month ago #15018

  • dajo
  • OFFLINE
  • Posts: 5069
Hello,

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

Re:Max execution time of 30 seconds exceeded 3.7.4 14 years, 1 month ago #15019

  • ssnobben
Now when I try to update urls I got this message and that cant be true?

----> 0 updated urls

There are no URLs to be updated
URLs updated: 0

Re:Max execution time of 30 seconds exceeded 3.7.4 14 years, 1 month ago #15020

  • ssnobben
Now when I try to update urls I got this message and that cant be true?

----> 0 updated urls

There are no URLs to be updated
URLs updated: 0

Re:Max execution time of 30 seconds exceeded 3.7.4 14 years, 1 month ago #15027

  • dajo
  • OFFLINE
  • Posts: 5069
If you have removed all the URLs in the backend prior to the Update, there are no URLs present to be updated. You can read more information about the Update URLs feature in JoomSEFs documentation.

Best regards,
ARTIO Support Team
ARTIO Support Team

Re:Max execution time of 30 seconds exceeded 3.7.4 14 years, 1 month ago #15051

  • ssnobben
Thanks David.

I will read that documentation now.

But I have about 4-5000 urls so when I do changes for structuring the site with changes of sections/categories and also menus changing the urls should not change you mean and not be updated manually?? Thats why the execution time was timing out too. Its to many urls that have to be update I guess.

I have been using Jomsef for 3 years and now they have change this function with release 3.7.4 ?

Is there an automatic update of urls that dont need manual updates of the sef database any more nowdays?

I didnt know about that..

Is this how it works?
Last Edit: 14 years, 1 month ago by .
  • Page:
  • 1
  • 2
User Login Empty