When uploading a file from a form to my server, I get hit by the max file
size exceded error, I have tried setting:
/*** Sets some INI Variables ***/
ini_set("post_m ax_size", "30M");
ini_set("upload _max_filesize", "30M");
ini_set("memory _limit", -1 );
To bypass them, but this doesn't seem to work, is there another variable
that I am missing? Its on a local machine so i can modify the ini file
directly, but I would prefer not to, since I need to use it on machine where
I dont have access to these settings?
- Alistair
size exceded error, I have tried setting:
/*** Sets some INI Variables ***/
ini_set("post_m ax_size", "30M");
ini_set("upload _max_filesize", "30M");
ini_set("memory _limit", -1 );
To bypass them, but this doesn't seem to work, is there another variable
that I am missing? Its on a local machine so i can modify the ini file
directly, but I would prefer not to, since I need to use it on machine where
I dont have access to these settings?
- Alistair
Comment