The following warnings occurred: | |||||||||||||||||||||||||||||||||||||||||||||
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
|
How to upload larger files? - Printable Version +- GetSimple Support Forum (http://get-simple.info/forums) +-- Forum: GetSimple (http://get-simple.info/forums/forumdisplay.php?fid=3) +--- Forum: General Questions and Problems (http://get-simple.info/forums/forumdisplay.php?fid=16) +--- Thread: How to upload larger files? (/showthread.php?tid=2092) |
How to upload larger files? - cupidsd - 2011-08-23 Hi, I am trying to upload files to our website based on the system, but the max file size is 2M bytes. Is there any way for me to get around this because some of our files like presentations or codes may exceed the size? Thanks a lot. How to upload larger files? - Connie - 2011-08-23 This is a deal between you and your hoster. The maximum upload size is defined in the PHP settings. You should contact your hoster's support. Cheers, Connie How to upload larger files? - cupidsd - 2011-08-24 Thanks. Now it works after modifying the php.ini. I changed the following 2 lines. post_max_size = 64M upload_max_filesize = 64M |