PHPA에 대한 내용정말 잘보고 고맙습니다...
다름이 아니라 메뉴얼대로 하고 설정을 했는데 테스트를 하니
NULL 값으로 나오네요. 아무래도 어디서 잘못했는지 알수가
없어서
이렇게 질문을 올립니다.. 답변주시면 고맙겠읍니다..
php.ini------------------
zend_extension=/usr/local/lib/php_accelerator_1.3.3r2.so
phpa = on
phpa.tweaks = on
phpa.enable_php_memory_bug_workaround = 0
phpa.cache_dir = /tmp
phpa.file_perms = 400
;phpa.ignore_files = "/index.php,/a/help.php"
phpa.ignore_dirs = "/tmp/,/cache/"
phpa.cache_file_prune_period = 1h
phpa.cache_file_ttl = 1d
phpa.shm_size = 8
phpa.shm_key = 0xc0deb00
phpa.shm_perms = 666
phpa.shm_user = nobody
phpa.shm_group = nobody
phpa.shm_release_at_exit = on
phpa.shm_stats_check_period = 5m
phpa.shm_ttl = 12h
;phpa.shm_ignore_files = "/index.php,/a/help.php"
phpa.shm_ignore_dirs = "/tmp/,/temp/,/nocache/"
phpa.shm_max_processes = 512
phpa.shm_lock_threshold0 = 10
phpa.shm_lock_threshold1 = 10
httpd.conf ----------------------------
NameVirtualHost 192.168.0.6
#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for requests without a known
# server name.
#
<<VirtualHost 192.168.0.6>>
ServerAdmin webmaster@dummy-host.example.com
DocumentRoot /home/zzzz/html/ls
ServerName ls.zzzz.com
php_value phpa.cache_dir /tmp
php_value phpa 1
ErrorLog logs/ls.example.com-error_log
CustomLog logs/ls.example.com-access_log common
<</VirtualHost>>
|