is anybody upload more than 100mb file using PHP upload
script in ONLINE SERVER (using .htaccess file)? please give
some idea...
Answer / chandresh
1. Put the following code in side the .htaccess file and
save it.
php_value upload_max_filesize 20M
php_value post_max_size 20M
php_value max_execution_time 200
php_value max_input_time 200
2. or use the ini_set() function for setting
ini_set('post_max_size','9M')
now post_max_size variable is 9 MB set.
| Is This Answer Correct ? | 21 Yes | 4 No |
What good is polymorphism?
How to download file in php?
How can you tell if a number is even or odd without using any condition or loop?
How do you destroy a particular or all Sessions?
What is use of preg_replace in php?
how to include a datepicker in a form using php and mysql
How data or variable can be receive or send from PHP to HTML page??
How can I maintain the count of how many persons have hit my site?
1 Answers MTOG, Rushmore Consultancy,
Which php framework is best for web development?
How can i execute PHP File using Command Line?
How can we know the count/number of elements of an array?
What is the difference between unset and unlink?