Вопрос

I have installed APC cache on AWS Elastic Beanstalk and its installed (I confirmed it by phpinfo() )

How do i check APC is working or not? How to find apc.php file location ?

Thanks

Это было полезно?

Решение

You can use this command in a terminal :

find / -name apc.php

Другие советы

You can execute

find / -name apc.php* 2>/dev/null

and

locate apc.php

to find location of apc.php

also refer How to make APC (PHP Cache) work? for apc-php-cache working

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top