Link to home
Start Free TrialLog in
Avatar of jacobbbc
jacobbbc

asked on

File upload of unlimited size using php

How can i upload a file of unlimited size in php without configuring the file upload size in php.ini file. If not possible in php is there any other language in which i can do so? Please can you provided the code also.
Avatar of Vimal DM
Vimal DM
Flag of India image

Hai,

In PHP .ini file

make the changes according to ur need

; Maximum allowed size for uploaded files.
upload_max_filesize = 32M


and restart the xampp server
Avatar of jacobbbc
jacobbbc

ASKER

I need a php (or any other language) code for file upload of unlimited size without making any change in php.ini file. Whatever may be the upload size in php.ini , i shall be able to upload files of any size using the code.
PHP.INI cause serious limitation, if it's set to 10MB max. you can't upload more than 10MB file, the only want in PHP is that you change it to a higher value.
ASKER CERTIFIED SOLUTION
Avatar of Ray Paseur
Ray Paseur
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial