Menu Content

Support

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

Critical Bug Report
(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.

TOPIC: Critical Bug Report

Critical Bug Report 14 years, 6 months ago #7971

  • y2ksw
  • OFFLINE
  • Joomla: latest; JoomSEF: latest
  • Posts: 20
[5816] EACCELERATOR: PHP crashed on opline 5 of (null)() at D:\vhosts\domain.tld\httpdocs\components\com_sef\joomsef.php:1616

[Sat Sep 12 11:00:00 2009] [crit] Parent: child process exited with status 3 -- Aborting.


I got this error while browsing the menues quickly and with no criteria (users at phone do this, for example).

I have eAccelerator enabled, but the cache (60 minutes) disabled.

I don't know if the same applies also for the cache on. I will try this now.

This error is critical since it causes Apache to crash.
The topic has been locked.

Re:Critical Bug Report 14 years, 6 months ago #7972

  • y2ksw
  • OFFLINE
  • Joomla: latest; JoomSEF: latest
  • Posts: 20
Seems to happen only with cache off.
The topic has been locked.

Re:Critical Bug Report 14 years, 6 months ago #7973

  • y2ksw
  • OFFLINE
  • Joomla: latest; JoomSEF: latest
  • Posts: 20
[1144] EACCELERATOR: PHP crashed on opline 5 of (null)() at D:\vhosts\domain.tld\httpdocs\components\com_sef\joomsef.php:1616

[Sat Sep 12 11:34:34 2009] [crit] Parent: child process exited with status 3 -- Aborting.

Sorry, it does happen with cache enabled, too.
The topic has been locked.

Re:Critical Bug Report 14 years, 6 months ago #7974

  • y2ksw
  • OFFLINE
  • Joomla: latest; JoomSEF: latest
  • Posts: 20
function _uriToUrl($uri, $removeVariables = null)
{
// Create new JURI object
// y2ksw
if($uri)
{
$url = new JURI($uri->toString());
}
else
{
$url = new JURI('');
}


I patched this here in order to avoid a crash when $uri is null.

I have no idea of the impact of this patch, but my priority is to keep Apache alive ;)
Last Edit: 14 years, 6 months ago by y2ksw.
The topic has been locked.

Re:Critical Bug Report 14 years, 6 months ago #7975

  • y2ksw
  • OFFLINE
  • Joomla: latest; JoomSEF: latest
  • Posts: 20
Changed again, since the previous patch did not always work.

function _uriToUrl($uri, $removeVariables = null)
{
// Create new JURI object
// y2ksw
//$url = new JURI($uri->toString());
try
{
$url = new JURI($uri->toString());
}
catch(Exception $e)
{
$url = new JURI('');
}
The topic has been locked.

Re:Critical Bug Report 14 years, 6 months ago #7977

  • y2ksw
  • OFFLINE
  • Joomla: latest; JoomSEF: latest
  • Posts: 20
No matter what, it continues to crash. Now I have switched to file cache.
The topic has been locked.
User Login Empty