HOW TO: Install Memcache on XAMPP (Windows 7/8/10)

Here are the steps that should be followed when you install memcache.

  1. Start your xampp.
  2. Click on ‘config’ and open php.ini file.

search for

;extension=php_memcache.dll

If not found add

extension=php_memcache.dll
[Memcache]
memcache.allow_failover = 1
memcache.max_failover_attempts=20
memcache.chunk_size =8192
memcache.default_port = 11211
  1. Download the file php_memcache.dll from windows.php.net
    (make sure to check your php version and php_memcache.dll are same. Otherwise, it will through error.)

unzip it and paste ‘.dll’ file in the path xampp\php\ext, in my case it is F:\xampp\php\ext (I had to rename the file to memcache.dll but when you take a look on other sites that describes the steps for this, they don’t tell to rename, but I have done this in my project!).

  1. Download and install Memcache server for windows

Download the Memcache.exe from jellycan

After completion of download, unzip and put the memcache.exe file into any desired directory of your choice (e.g. C:/memcached/). make sure folder name should be memcached

  1. Open the cmd prompt with “Run as Administrator” and execute the line to install

c:/memcached/memcached.exe -d install

then type

net start "memcached server"

In case you get memcache is already installed. then just go through line net start "memcached server".

Or

For the installation purpose you can go to the path where you have copied the memcache.exe. and double click to the file, memcache is installed, now just add line net start "memcached server" and your memcache is enabled.

  1. Restart Xampp Apache

  2. Restart Memcached:

    C:\Windows\system32> net start “memcached”

    The memcached service is starting.
    The memcached service was started successfully.

    C:\Windows\system32> net stop “memcached”

    The memcached service is stopping.
    The memcached service was stopped successfully.

Leave a Comment