How to install APC or APCu in xampp


How to install APC or APCu in xampp
I have been trying to install APC (Alternative PHP Cache). My development environment is windows 7 32-bit, xampp and php 7. I have downloaded dll files of APC and APCu and placed them in xampp/php/ext
directory. Then I have added the following lines in php.ini file:
xampp/php/ext
extension : php_apc.dll
extension : php_apcu.dll
After that I restarted the apache. When I look at phpinfo.php
, I don't see anything there about APC. Could you tell me someone where I did mistake?
phpinfo.php
1 Answer
1
Modify the php.ini configuration file by placing the below code in the file
extension : php_apc.dll
Important: Please the Remove the comma before the extension if exists.
found anything on the logs?
– Severino Lorilla Jr.
May 3 '16 at 9:06
no I don't find anything in error.log
– StreetCoder
May 3 '16 at 9:11
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
yes I did as you mentioned and there is no comma before this line.
– StreetCoder
May 3 '16 at 8:57