is anybody upload more than 100mb file using PHP upload
script in ONLINE SERVER (using .htaccess file)? please give
some idea...
Answer Posted / 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 |
Post New Answer View All Answers
How can we submit a form without using submit buttons?
How do you destroy a session?
What is the use of addslashes in php?
What are the characteristics of php variables?
What is memcache?
What language is php written in?
What is difference between python and php?
What is singleton design pattern in php?
What does $globals mean?
Which PHP function would you use to send an email?
How to test if a variable is an array?
Is multilevel inheritance possible in php?
What is the difference between exception::getmessage and exception::getline?
Is null function in php?
How can image properties be retrieved in php?