문제

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