HI glenn,
If you are on a normal virtual/shared hosting account, you will not be able to edit php.ini, as it is server-wide.
However you can make modifications for your site/account.
I see you're running Apache, so you can use a file called .htaccess
Create a file with notepad and save as htaccess.txt
Put the following code in:
Code:
php_value upload_max_filesize ###
php_value post_max_size ###
php_value memory_limit ###
Replace ### to the amount you want to allow.
Every host is a bit different. On some you can use megabytes, like 10mb, if that doesn't work, then try converting to bytes (10000000)
You may not need the memory limit directive, but it depends on the number used for the others.
Upload htaccess.txt to the folder which holds the script, then change the name to .htaccess