Changed php version from 5.4 to 5.5, OpCache does not work anymore

JelleG

Verified User
Joined
Jun 3, 2015
Messages
57
I updated my php version from 5.4 to 5.5 using this:

Code:
cd /usr/local/directadmin/custombuild
./build set php1_release 5.5
./build update
./build php n
./build rewrite_confs

I already used OpCache with php 5.4, so I did already set this into my php.ini:

Code:
zend_extension=opcache.so
opcache.enable=1
;opcache.enable_cli=0
opcache.memory_consumption=256
opcache.interned_strings_buffer=12
opcache.max_accelerated_files=16000
opcache.validate_timestamps=1
opcache.fast_shutdown=1
opcache.enable_file_override=1

I did restart my entire server, but it is still not working.
 
Back
Top