添付ファイルのサイズ変更

| No Comments | No TrackBacks



すぐに忘れてしまうので,覚え書き。


/usr/local/lib/php.ini の



memory_limit = 200M ; Maximum amount of memory a script may consume (8MB)
; Maximum size of POST data that PHP will accept.
post_max_size = 200M
; Maximum allowed size for uploaded files.
upload_max_filesize = 200M

と,pukiwiki の plugin/attach.ini.php の



// Max file size for upload on PHP (PHP default: 2MB)
ini_set('upload_max_filesize', '200M');

// Max file size for upload on script of PukiWikiX_FILESIZE
define('PLUGIN_ATTACH_MAX_FILESIZE', (200 * 1024 * 1024)); // default: 1MB


以上を書き換える必要がある。ここの例では上限を200MBとした。なお php.ini を変更したときは Apache をリスタートする必要がある。~


添付するファイルのサイズが大きくなると,サーバの処理時間が長くなりタイムアウトすることがある。その場合は php.ini の



max_execution_time = 300 ; Maximum execution time of each script, in seconds

を数字を大きくすればよい。


No TrackBacks

TrackBack URL: http://mirahouse.jp/mtos/mt-tb.cgi/676

Leave a comment

About this Entry

This page contains a single entry by rnaito published on June 17, 2006 3:38 PM.

情報通信研究機構(NICT)のNTP was the previous entry in this blog.

php-4.4.2 is the next entry in this blog.

Find recent content on the main index or look in the archives to find all content.