无法为PHP配置APC

时间:2012-08-30 18:14:40

标签: php apc ini php-extension

我的新专用服务器有一个非常奇怪的问题。 它安装了Plesk 11,我正在尝试安装APC。一切都很顺利,我可以在phpinfo()上看到APC配置,但我无法配置它!我正在尽可能地尝试,但phpinfo中显示的配置不会改变。它没有显示apc.ini配置文件已加载到其他ini文件中,但如果我在文件中注释extension=apc.so行,则APC会关闭。

这是我的apc.ini文件:

[APC]
extension=apc.so

apc.enabled = 1    # Turn APC cache on
apc.optimization  = 0    # Experimental keep off
apc.shm_segments = 1    # Shared memory segments
apc.shm_size = 256M  # Max shared memory dependent on OS
apc.ttl = 7200
apc.user_ttl  = 7200
apc.num_files_hint = 1024
apc.mmap_file_mask = /tmp/apc.XXXXXX
apc.enable_cli = 1 # Allow command line php to function
apc.cache_by_default  = 1 # Enabled, 0 for filters
apc.max_file_size = 10M # Maximum cached file size
apc.stat = 1 # 1 for dev, 0 for production, whether the source file is checke$
#apc.include_once_override = 1 # Use PHP5.3+ for include_once optimization

提前致谢并抱歉我的英语不好,

维尼

1 个答案:

答案 0 :(得分:0)

哦,我的坏。 ini文件中的注释不应与#一起使用,而是;。真的对不起。现在它就像一个魅力。