File Limit size upload in TerraMaster webserver
Problem by default it was limited to 2 mb ;
none of these settings can’t help :
upload_max_filesize 10M ,value post_max_size 10M ,;php_value memory_limit 32M , client_max_body_size ….
The Solution Is :
- Create file “.htaccess “on your root webserver , not at the root but at the root of your webserver ex : “/mnt/md2/HD1/Web”
- Create these settings inside.
php_value upload_max_filesize 102M
php_value post_max_size 102M
php_value memory_limit 64M
#DIMM_V2