tengo un problema con el apache...
Corro en el servidor local 10 procesos con los cuales se actualiza mi web...
el tema es el seguiente los proceso se incian y se recargan las pagina desde java script, el cual lee un txt (en cual dejo registro de lo que se hizo y donde continuar) y continua su tarea...osea que el proceso funciona recargando el navegador, obviamente automatico con JS como dije.
el problema es que desp de un rato de ejecucion, me da en el navegador la conexion ha sido reiniciada y muere el proceso...
en el log de errores del apache
me tira esto
Cita:
osea capaz el proceso anda bien unas horas y deps muere...Fri Aug 20 22:35:03 2010] [notice] Parent: child process exited with status 3221225477 -- Restarting.
[Fri Aug 20 22:35:04 2010] [notice] Apache/2.2.14 (Win32) PHP/5.3.2 configured -- resuming normal operations
[Fri Aug 20 22:35:04 2010] [notice] Server built: Sep 28 2009 22:41:08
[Fri Aug 20 22:35:04 2010] [notice] Parent: Created child process 440
[Fri Aug 20 22:35:05 2010] [notice] Child 440: Child process is running
[Fri Aug 20 22:35:05 2010] [notice] Child 440: Acquired the start mutex.
[Fri Aug 20 22:35:05 2010] [notice] Child 440: Starting 64 worker threads.
[Fri Aug 20 22:35:05 2010] [notice] Child 440: Starting thread to listen on port 80.
[Fri Aug 20 22:35:04 2010] [notice] Apache/2.2.14 (Win32) PHP/5.3.2 configured -- resuming normal operations
[Fri Aug 20 22:35:04 2010] [notice] Server built: Sep 28 2009 22:41:08
[Fri Aug 20 22:35:04 2010] [notice] Parent: Created child process 440
[Fri Aug 20 22:35:05 2010] [notice] Child 440: Child process is running
[Fri Aug 20 22:35:05 2010] [notice] Child 440: Acquired the start mutex.
[Fri Aug 20 22:35:05 2010] [notice] Child 440: Starting 64 worker threads.
[Fri Aug 20 22:35:05 2010] [notice] Child 440: Starting thread to listen on port 80.
tambien en la direccion del navegador me sale en vez de localhost/proceso1.php
me sale el local host con www adelante como si no se estuviera ejecuntandose localmente osea www.localhost.com/proceso1.php
y ahi tambien muere
en la config del php
tengo esto no se si influye
Código PHP:
echo "<script language=JavaScript>
function recargar()
{
location.href=location.href
}
</script>";
error_reporting(E_ALL | E_STRICT);
ini_set("memory_limit","512M");
set_time_limit(0);