Php memcache on iis 7 not working

I installed memcache following this article:

http://pureform.wordpress.com/2008/01/10/installing-memcache-on-windows-for-php/

In a nutshell, I add php_memcache.dll to my php / ext / directory, IIS selects it well, but when I look into the php.ini file and add the line of code:

extension = php_memcache.dll

it doesn't show up in phpinfo.php file.

Does anyone know why,

greetings

+3


source to share


1 answer


Check the results phpinfo();

and search for "Thread Safety" - you will most likely find that it is "disabled". If so, you need to make sure you have the nts version (not streamed) of php_memcache.dll (site http://downloads.php.net/pierre/ like links to both)



+2


source







All Articles