I needed to change the upload_max_filesize for my site so I followed the directions at http://wiki.dreamhost.com/PHP.ini to create a custom php.ini file.
I followed the directions and double checked the file permission settings.
When I try to view any page on my site, the php-wrapper.fcgi file comes up in plain text.
Here are the contents of my php-wrapper.fcgi file:
#!/bin/sh
export PHPRC=/home/username/mysite.com/cgi-bin
exec /dh/cgi-system/php5.cgi $*
Here are the contents of the .htaccess file I created:
Options +ExecCGI
AddHandler php5-cgi .php
Action php-cgi /cgi-bin/php-wrapper.fcgi
Action php5-cgi /cgi-bin/php-wrapper.fcgi
Can anyone give me a suggestion? I’m very new here.