2

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

Rajaraman
  • 1,637
  • 5
  • 19
  • 24

2 Answers2

3

You can use this command in a terminal :

find / -name apc.php
Loïc
  • 11,804
  • 1
  • 31
  • 49
0

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

Community
  • 1
  • 1
Rahul R Dhobi
  • 5,668
  • 1
  • 29
  • 38