Anyone know what the max php upload file size i can set in the php.ini file on ipage?

these values
upload_max_filesize
post_max_size
memory_limit

Chosen Answer:

($_FILES["file"]["size"] < 200000000);

That’s what I use all the time.
by:
on: 22nd August 11

You can leave a response, or trackback from your own site.

One Response to “Anyone know what the max php upload file size i can set in the php.ini file on ipage?”

  1. Girlgamer2 says:

    ($_FILES["file"]["size"] < 200000000);

    That’s what I use all the time.

Leave a Reply