Page 1 of 1

Using APCU on XAMPP 1.8.3 Windows 8

PostPosted: 27. October 2013 09:34
by raineng
I'm using the latest APCU dll from http://pecl.php.net/package/APCu (4.0.2), x64 threadsafe version. In my php.ini I put:

zend_extension = "D:\Programming\xampp\php\ext\php_apcu.dll"
apc.enabled = 1
apc.serializer = php
apc.smh_size = 512M

The phpinfo() doesn't seem to show apcu being loaded at all (without any error displayed). Any suggestion is much appreciated.

Re: Using APCU on XAMPP 1.8.3 Windows 8

PostPosted: 27. October 2013 10:10
by Altrea
XAMPP PHP is x86 TS so you should try the x86 TS version.

Re: Using APCU on XAMPP 1.8.3 Windows 8

PostPosted: 27. October 2013 17:07
by raineng
Super. Thank you very much. And also, for those interested, you must use

extension = "pathToYourAPCUExt"

This is note a zend_extension so using zend_extension will not work.