Reputation: 473
How to Install XCache in WAMP server XCache
I got XCache is not loaded
Upvotes: -2
Views: 3659
Reputation: 9979
Download xcache curesponding to your PHP version from here
Open php.ini and comment APC, memcache, disable memcache service.
Add the extension = php_xcache.dll
to php.ini
Copy php_xcache.dll to the php ext dirctory.
Open xcache.ini, copy & paste all to the end of php.ini (right before ; End:)
Edit the path to php_xcache.dll, example: zend_extension_ts = C:/xampp/php/ext/php_xcache.dll
Set the xcache admin username and password. Use any username. Generate a 32 digit md5 password.
php.ini section will look like
[xcache-common]
zend_extension_ts = C:/xampp/php/ext/php_xcache.dll
[xcache.admin]
xcache.admin.enable_auth = On
xcache.admin.user = "anyusername"
xcache.admin.pass = "32-digit-number"
Upvotes: 3