Drupal

About drupal cms

An AJAX HTTP error occurred. HTTP Result Code: 200

php.ini

max_execution_time = 300
max_input_time = 300
max_input_nesting_level = 300
memory_limit = 2048M

default_socket_timeout = 300
mysql.connect_timeout = 300

max_execution_time = 300 ; 每個 script 執行時間上限, 單位是秒.
max_input_time = 300 ; 每個 script 處理輸入資料可用時間上限, 單位是秒.
memory_limit = 999M ; 每個執行中的 script 最多可使用的系統記憶體資源.
post_max_size = 800M ; PHP 能夠接受發表文章的容量上限.
file_uploads = On ; 這個不用改, 安裝完就是 On 了, 請確定你的也是 On.
upload_max_filesize = 800M ; 允許上傳檔案的最大容量.
default_socket_timeout = 300; Socket 無回應斷線時間上限.
mysql.connect_timeout = -1 ; MYSQL 無回應斷線時間上限, -1 代表永遠等下去.

memory_limit > post_max_size > upload_max_size 

如果你打算讓你的系統能夠上傳更大的檔案, 可以自行增加某些數值.
但設定過大的值, 不保證系統的穩定性.
ps: 歹勢, 沒時間看 code 測試...

有些數值有相互關係, 例如, memory_limit 必須大於 upload_max_filesize 與 post_max_size.
Tags