I was trying to enable an extension (xml-rpc) on iis6 with php, but i didnt want to restart iis. The steps is to
- create a php file in your root folder or subfolder with a php code “phpinfo();”
- navigate to that page and search for the extension you want.
- locate the php.ini file on your server (check the phpinfo to get hints on where this is)
- now enable the extension by removing the semi colon.
- go to iis6 manager on your server
- right click on default application pool
- and select recycle.
- check your phpinfo file again and the extension should be loaded
good luck