Unable to change upload_max_filesize and post_max_size
I'm developing PHP web applications on OS X 10.7.3 and when trying to change the upload_max_filesize and post_max_size on /etc/php.ini then restart Apache the values do not change in my phpinfo, they stay at the default values:
post_max_size = 8M
upload_max_filesize = 2M
I tried changing permissions on php.ini.default from 444 to 755, then changing both upload_max_filesize and post_max_size inside php.ini.default, then restart Apache and nothing. There's got to be some other .ini somehwere that's controlling this, but there's no .ini in the web directory I'm trying to access, there's no .user.ini anywhere.
I did change the memory_limit from the default 128M to 512M and that worked fine. I'm not sure why the upload and post size values don't change. Any help would be appreciated.
Thanks!