Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

APC for wampserver 2.4

Tags:

php

wamp

apc

After 3 hours of searches and differents failed tries, I'm asking help here .. .:(

My configuration:

PHP 5.4.12

Compiler MSVC9

OS: W7 Home premium edition service pack 1

Architecture: x64

Apache: 2.4.4

I've tried many php_apc.dll without success. Is someone found the right one to use or any good alternative to APC?

like image 564
zeflex Avatar asked Feb 20 '14 02:02

zeflex


People also ask

How do I enable APC in WAMP?

Enable the php_apc extension in WAMP. After enabling the APC extension, WAMP will automatically restart all services. Open up your php.ini file from the WAMP menu, scroll to the bottom of the file and setup your APC configuration.

What is a WampServer?

WampServer is a Windows web development environment. It allows you to create web applications with Apache2, PHP and a MySQL database. WampServer’s functionalities are very complete and easy to use so we won’t explain here how to use them. Empower your development team with this easy to admin web server for Windows.

Do I need to update WampServer to the latest version?

Important: Before installing Apache 2.4.51, the Wampserver 3.2.5 update is necessary. It is also essential to have previously installed the Visual C ++ Redistributable Packages VC 2015-2019 (VS16) 14.29.30133 or more. See the bottom of this page for download links. to keep password management compatibility with the previous versions.

What is the use of Wamp server?

WampServer is a Windows web development environment. It allows you to create web applications with Apache2, PHP and a MySQL database. WampServer’s functionalities are very complete and easy to use so we won’t explain here how to use them.


1 Answers

PHP APC extension for PHP 5.3x to PHP 5.4 and PHP APCu extension for PHP 5.5x

APC installation:

Step 1:

Download APC dll file for PHP 5.3x to 5.4

Step 2:

Extract zip and rename with php_apc.dll

Step 3:

Copy and paste in YOUR_DIR:\wamp\bin\php\php_YOUR_PHP_VER_5.3x_OR_5.4\ext

Step 4:

Enable apc from php.ini

Open php.ini file

YOUR_DIR:\wamp\bin\apache\apache_YOUR_APACHE_VER\bin\php.ini

extension=php_apc.dll

Put above line in php.ini file

OR (Base on your configuration)

YOUR_DIR:\wamp\bin\php\php_YOUR_PHP_VER_5.3x_OR_5.4\php.ini

extension=php_apc.dll

Put above line in php.ini file

Step 5:

Restart Apache



APCu installation for PHP 5.5x:

Step 1:

Download APCu dll file for PHP 5.5x

Step 2:

Extract zip and rename with php_apcu.dll

Step 3:

Copy and paste in YOUR_DIR:\wamp\bin\php\php_YOUR_PHP_VER_5.5x\ext

Step 4:

Enable apc from php.ini

Open php.ini file

YOUR_DIR:\wamp\bin\apache\apache_YOUR_APACHE_VER\bin\php.ini

extension=php_apcu.dll

Put above line in php.ini file

OR (Base on your configuration)

YOUR_DIR:\wamp\bin\php\php_YOUR_PHP_VER_5.5x\php.ini

extension=php_apcu.dll

Put above line in php.ini file

Step 5:

Restart Apache

like image 50
Ghanshyam Gohel Avatar answered Oct 03 '22 23:10

Ghanshyam Gohel