Increase upload size without acces to php.ini -


i want increase upload size of php scripts. google searches have learned changing upload_max_filesizeparameters in php.ini.

unfortunatly use one.com webhosting, , not give me access php.ini.

can change parameter later? thinking of adding second php.ini or change parameter on index page.

you can use .htaccess these code:

php_value upload_max_filesize 30m // set upload max filesize 30mb php_value post_max_size 30m // set post max size 30mb 

note

your provider has enabled dynamic shared object (dso) support using php_value! technical documentation can find here: http://httpd.apache.org/docs/2.4/dso.html


Comments