嘗試編輯ht訪問文件,或者如果你能最好的誘餌php.ini文件。編輯所需的更改,例如POST的最長時間和POST的最大大小。這樣我相信你的問題可以解決。如果您需要更改,請告訴我。
FYI:如果妳不想要從烏爾服務器支持團隊的幫助來覆蓋你的PHP設置,這些都是4層的方法來做到這一點
使用PHP
ini_set('upload_max_filesize', '100M');
ini_set('post_max_size', '100M');
ini_set('max_input_time', '1500');
ini_set('max_execution_time', '1500');
<input type="hidden" name="max_execution_time" value="2000"/>
<input type="hidden" name="max_input_time" value="2000"/>
<input type="hidden" name="upload_max_filesize" value="105M"/>
<input type="hidden" name="post_max_size" value="105M"/>
現在使用的.htaccess
php_value upload_max_filesize "105M"
php_value post_max_size "105M"
php_value max_input_time "1500"
php_value max_execution_time "1500"
#<IfModule mod_php5.c>
#php_value post_max_size 200M
#php_value upload_max_filesize 200M
#php_value memory_limit 300M
#php_value max_execution_time 259200
#php_value max_input_time 259200
#php_value session.gc_maxlifetime 1200
#</IfModule>
現在使用的htaccess
------NEW php.ini---------
upload_max_filesize = 105M
post_max_size = 105M
max_execution_time = 1500
max_input_time = 1500
--------------/php.ini---------
誰知道沒有看到你的代碼? – mscdex 2014-09-21 22:39:58