Google
 

2009年06月06日

●Windows 2000で大容量HDを使う

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\atapi\Parameters]
"EnableBigLba"=dword:00000001

2009年05月18日

●OIDs

PostgreSQL8.x デフォルトの設定でOIDsの設定は無効。
プリマリキーが存在しない時、プリマリキーとしてOIDsは認識しない。

postgresql.conf

default_with_oids = on

2009年05月11日

●XdebugとWinCacheGrind

XdebugとWinCacheGrind

2009年05月01日

●log

/var/log/httpd/*log /home/*/logs/*log {
monthly
rotate 12
missingok
dateext
notifempty
sharedscripts
postrotate
/sbin/service httpd reload > /dev/null 2>/dev/null || true
endscript
}

2009年04月10日

●yum

yum clean all
rpm --rebuilddb

2009年04月09日

●mod_delay追加

mod_delay追加


DelayEngine on

DelayTable /var/proftpd/proftpd.delay

mkdir /var/proftpd

2009年03月27日

●情報を隠す

Apacheの情報を隠す

ServerTokens Prod
ServerSignature Off


PHPの情報を隠す
php.iniの設定

expose_php = On
 ↓
expose_php = Off

2009年03月22日

●CPAN

cpan> o conf urllist
urllist
ftp://ftp.jaist.ac.jp/pub/CPAN/
Type 'o conf' to view configuration edit options

cpan> o conf
cpan> o conf urllist pop ftp://ftp.jaist.ac.jp/pub/CPAN/
cpan> o conf commit

cpan> o conf
cpan> o conf urllist push ftp://ftp.ring.gr.jp/pub/lang/perl/CPAN/
cpan> o conf commit


install Jcode

2009年03月18日

●HTMLでPHP

AddHandler php5-script .php .html .htm
AddType text/html .php .html .htm
AddType application/x-httpd-php .htm .html

2009年03月13日

●AliasMatch

AliasMatch ^/home/([^/]+)/(.*) /home/$1/public_html/$2