0

I am using XAMPP 1.7.0. I have followed these instructions to install memcached and it works fine for Windows 7 but when I have it installed in Windows Server it shows

Fatal error: Class 'Memcache' not found

I have tried many times to do this but am failing.

Rob Hruska
  • 118,520
  • 32
  • 167
  • 192
Faiz Ahmed
  • 1
  • 1
  • 2

1 Answers1

1

This question has been solved here: Class 'Memcache' not found & PHP

Your problem is probably that the dll file you used is not working with your PHP version;

This is your solution (I quote from my own answer)

I found the working dll files for PHP 5.4.4

I don't knowhow stable they are but they work for sure. Credits goes to this link.

http://x32.elijst.nl/php_memcache-5.4-nts-vc9-x86.zip

http://x32.elijst.nl/php_memcache-5.4-vc9-x86.zip

It is the 2.2.5.0 version, I noticed after compiling it (for PHP 5.4.4).

Please note that it is not 2.2.6 but works. I also mirrored them in my own FTP. Mirror links:

http://mustafabugra.com/resim/php_memcache-5.4-vc9-x86.zip http://mustafabugra.com/resim/php_memcache-5.4-nts-vc9-x86.zip

Community
  • 1
  • 1
Mustafa
  • 825
  • 3
  • 14
  • 37
  • Wow, I've been having this problem for a while and these links for PHP 5.4 just did the trick. Thanks! – Tesserex Sep 11 '12 at 01:08