Skip to main content

what is APC internal debugging?


I got a prompt with Enable internal debugging in APC [no]: . While installing APC.




  • what is APC internal debugging?

  • Is is better to keep it enabled?




Tried to do a search but couldn't find an answer!


Source: Tips4allCCNA FINAL EXAM

Comments

  1. This message comes from the pear package of APC. If you set it, APC will be configured with the --enable-apc-debug flag, which means the macro __DEBUG_APC__ is set in the C source code.

    This macro will add additional printfs about APC's internal state. Naturally, these are only useful in a testing environment, and should never be activated on a public webserver.

    Unless you're editing APC's source code, or tracking down an extremely low-level problem in APC (which is unlikely), you should answer no. You can just hit Enter.

    ReplyDelete

Post a Comment

Popular posts from this blog

Wildcards in a hosts file

I want to setup my local development machine so that any requests for *.local are redirected to localhost . The idea is that as I develop multiple sites, I can just add vhosts to Apache called site1.local , site2.local etc, and have them all resolve to localhost , while Apache serves a different site accordingly.