Hi,
the problem might be that you edited the "wrong" php.ini.
Create a little phpinfo script:
<?PHP
phpinfo();
?>
Near the top of the output is a line showing you the location where php expects the php.ini to be. Make sure that there is a php.ini in that directory at all.
Thomas