What should I do if php space upload is restricted? because the space can only be uploaded through ftp, and the server cannot be configured? how can I break through this? can I upload the php file and modify this parameter? If yes, add the code in detail. the current server configuration is (post_max_size & nbsp; 8 M, upload_max_filesize & nbsp; 8 M). What should I do if the php space upload is limited?
Because the space can only be uploaded through ftp, but cannot be configured on the server, how can I break through this? can I upload a php file and modify this parameter? If yes, add the code in detail.
The current server configuration is (post_max_size 8 M, upload_max_filesize 8 M)
Upload restrictions
Share:
------ Solution --------------------
No, ini_set () does not support post_max_size, so PHP code is not supported,
Try adding in. htaccess:
Php_value upload_max_filesize 10 M
Php_value post_max_size 10 M
But it may not work either. (since space is limited, all people who rely on technology to eat may have been blocked)
The worst plan is to cut files and upload them in batches.