how to upload 100mb file using .htaccess..

Answers were Sorted based on User's Feedback



how to upload 100mb file using .htaccess....

Answer / rakesh kumar nautiyal

define the max file size in .htaccess file as 100MB

Is This Answer Correct ?    5 Yes 2 No

how to upload 100mb file using .htaccess....

Answer / danish

you have to overwrite php.ini's s settings in .htacess
upload_max_filesize 100M
php_value post_max_size 100M
php_value upload_max_filesize 100M

Is This Answer Correct ?    4 Yes 3 No

Post New Answer

More PHP Interview Questions

What is difference between single quotes and double quotes in php?

0 Answers  


What is alias in php?

0 Answers  


How can I use single quotes in single quotes in php?

0 Answers  


Why do we use htaccess and where?

0 Answers  


What is the difference between implode() and explode() in php?

0 Answers  






Write a function that takes "depth" as argument and return sum of node's data of that depth. For instance, (0) depth 0 / \ (10) (20) depth 1 / \ (40) (50) depth2 If I pass get_sum_by_depth(2) , it would return 90 (i.e. 40 + 50 )

0 Answers   Amazon,


How can we extract string ‘abc.com ‘ from a string info@abc.com" target="_blank">http://info@abc.com using regular expression of php?

6 Answers  


How does the identity operator === compare two values?

0 Answers  


What is substr() in php? And how it is used?

0 Answers  


What is the purpose of the following files having extensions 1) .frm 2) .myd 3) .myi? What do these files contain?

2 Answers  


Tell me what is the default session time in php?

0 Answers  


What is prepare in php?

0 Answers  


Categories