Skip to content

Instantly share code, notes, and snippets.

@tomysmile
Created April 26, 2016 14:13
Show Gist options
  • Save tomysmile/339a6f04b1570a0803d8facdcf2a27cd to your computer and use it in GitHub Desktop.
Save tomysmile/339a6f04b1570a0803d8facdcf2a27cd to your computer and use it in GitHub Desktop.
XAMPP with Memcached extension

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

start your xampp. 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 3. download the file php_memecache.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!).

Download and installing 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

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.

Restart Xampp Apache 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.

@robyy72
Copy link

robyy72 commented Nov 6, 2023

Hi Tomy, any idea where I get the php_extension.dll file for php 8.2 ? I'm running xampp on windows 11.
Thanx and best Robert

@manhnhesc
Copy link

this tutorial for php_memcache.dll ext not php_memcached.dll

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment