tomfmason Posted July 11, 2006 Share Posted July 11, 2006 I looked in the manual and found a simple script that, I thought, would reload Bind. Well it doesn't. I don't get an error message. I checked the event viewer and it had nothing about bind reloading.Here is the script:[code=php:0]<?phppclose(popen('reload /b C:\windows\system32\dns\bin\rndc.exe', 'r'));?>[/code]This does nothing. Any suggestions on how I can reload bind? Quote Link to comment https://forums.phpfreaks.com/topic/14314-reloading-bind/ Share on other sites More sharing options...
ShogunWarrior Posted July 11, 2006 Share Posted July 11, 2006 I (imagine) it's : [b]C:\windows\system32\dns\bin\rndc.exe reload /b[/b] Quote Link to comment https://forums.phpfreaks.com/topic/14314-reloading-bind/#findComment-56414 Share on other sites More sharing options...
tomfmason Posted July 12, 2006 Author Share Posted July 12, 2006 <b>The Fix</b>[code=php:0]<?php$handle = popen( 'C:\windows\system32\dns\bin\rndc.exe reload', 'r');echo fread( $handle, 4096 );pclose( $handle );?>[/code]In windows this will display the message [b]Server Reloaded Successfuly[/b]Thanks Quote Link to comment https://forums.phpfreaks.com/topic/14314-reloading-bind/#findComment-56618 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.