Copy php.ini into C:\Windows, then restart Apache.
You may have the agent running in your taskbar (near the clock), if you right click on that, you should be able to stop/start the service. If not, you can do it manually.
- Have to go into Start -> Settings -> Control Panel -> Admin Tools -> Services
- Right click on Apache, and click on Restart
--------------------------------
After this, follow these steps to view your php configuration that's loading when php does.
In the directory where your installing your php app, create a blank file, an call it phpinfo.php. You can use either notepad, or dreamweaver, but the name is not as important as the need to have it end in .php.
Then, edit that file, and add this line:
Save the file, and then open it using IE or Firefox.
http://localhost/path/to/phpinfo.php and that will display all your php settings. Look for a "GD2" section of the file. That will tell you if it's loading. If it's not there, then it's not.
Hope this helps.