Jump to content

restarting apache via php


tomfmason

Recommended Posts

I have tried what you suggested and nothing happened.

I also tried this
[code=php:0]<?php
$result = popen( 'C:\Program Files\apache\bin\apache.exe -k restart', 'r');
echo fread( $result, 4096 );
pclose($result);
?>[/code]

This works fine for reloading Bind but not for Apache. Any suggestions?
[code][code]When I try it this way

[code=php:0]<?php
$result = popen( 'C:\Program Files\apache\bin\apache.exe restart', '-k');
echo fread( $result, 4096 );
pclose($result);
?>[/code]

I get the following error
[/code]
Faulting application Apache.exe, version 2.0.55.0, faulting module ntdll.dll, version 5.1.2600.2180, fault address 0x000010f3.[/code]

This is in the windows event viewer.

Any suggestions on a better way to do this

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.