How to disable APC ... completely?

Discussion in 'General' started by darkangel, Feb 20, 2013.

  1. darkangel

    darkangel New Member

    Hi,

    I need to disable APC, because I think it may be causing issues under load, but when I tried to do this last time (by disabling the extension and restarting Apache), it caused strange things to happen (reading old caches, etc.).

    I found out that it's because restarting Apache has no effect on Fast-CGI workers, and that I need to "restart" the workers as well. What is the best (non-destructive) way to do this?

    Thanks.
     
  2. pititis

    pititis Member

    Locate apc.ini (under ubuntu/debian /etc/php5/conf.d/apc.ini) and disable it:

    Code:
    ;extension=apc.so
    
    Restart apache.
     
  3. darkangel

    darkangel New Member

    Thanks, but did you read my post?
     

Share This Page