我在NGINX + PHP_FPM上运行了一个Magento(CE版本1.9)站点。一切都运作良好。
我安装并配置了APC(3.1.15-dev)并且运行良好但是只有一个问题:客户插入并下载可下载的产品文件并且它不返回product.zip
文件,而是php文件与八位字节流。
当我在apc.enabled=1
中将;apc.enabled=1
更改为apc.ini
时,请重新启动PHP_FPM,然后在客户下载文件时,它会返回正确的文件product.zip
。
有没有人遇到这个问题?请帮助我,因为我找不到解决方案。
apc.ini
extension = apc.so
apc.enabled=1
apc.shm_size=64M
apc.shm_strings_buffer=0
apc.ttl=7200
apc.user_ttl=7200
apc.mmap_file_mask=/tmp/apc.XXXXXX
Magento local.xml
<cache>
<backend>apc</backend>
<prefix>MySITE_</prefix>
</cache>
非常感谢!