|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-12-15 19:40 UTC] sniper@php.net
[2005-12-15 19:41 UTC] sniper@php.net
[2005-12-16 00:11 UTC] motion_4u at hotmail dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Dec 01 06:00:01 2025 UTC |
Description: ------------ I have tried to upload a 100MB file to the server and for that I have changed the following variables to enable the upload within PHP.INI file: max_execution_time = 3000 max_input_time = 600 memory_limit = 200M post_max_size = 200M But uploading small files up to 8 MB do work but PHP stops the upload for files bigger than 8 MB. I have also tried to set the post_max_size value with the ini_set ( "post_max_size", "200M" ); with no success. Actual result: -------------- Calling the below snippent echo 'post_max_size = ' . ini_get('post_max_size'); shows still: post_max_size =8M :((