日別アーカイブ: 2008 年 9 月 4 日

apache

・画像が多い場合
/etc/httpd/conf/httpd.conf
変更ディレクティブ : KeepAlive
変更内容 : Off  =>  On
・Request-URI Too Large
LimitRequestLine 20000
(#service httpd restart)

php

Maximum execution time of 30 seconds exceeded 対応

1. .htaccess
php_value max_execution_time 60

2. php
set_time_limit(60);

include path
php_value include_path “.:/usr/local/lib/pear: .:/var/www/htdocs/inc”