Xcache gebruiken ipv eAccelerator (vBSEO werkt samen met Xcache)
vi /usr/local/lib/php.iniCode:wget http://xcache.lighttpd.net/pub/Releases/1.2.2/xcache-1.2.2.tar.gz tar xvxf xcache-1.2.2.tar.gz cd xcache-1.2.2 phpize ./configure --enable-xcache make make install
Zorg ervoor dat eAccelerator niet meer in de php.ini staat, anders krijg je een hoop gezeik met httpd!
Code:[xcache-common] ;; install as zend extension (recommended), normally "$extension_dir/xcache.so" zend_extension = /usr/local/lib/php/extensions/no-debug-non-zts-20060613/xcache.so zend_extension_ts = /usr/local/lib/php/extensions/no-debug-non-zts-20060613/xcache.so ;; For windows users, replace xcache.so with php_xcache.dll ;zend_extension_ts = c:/php/extensions/php_xcache.dll ;; or install as extension, make sure your extension_dir setting is correct ; extension = xcache.so ;; or win32: ; extension = php_xcache.dll [xcache.admin] xcache.admin.auth = On xcache.admin.user = "mOo" ; xcache.admin.pass = md5($your_password) xcache.admin.pass = "" [xcache] xcache.shm_scheme = "mmap" xcache.size = 60M xcache.count = 1 xcache.slots = 8K xcache.ttl = 3600 xcache.gc_interval = 300 ; Same as aboves but for variable cache ; If you don't know for sure that you need this, you probably don't xcache.var_size = 4M xcache.var_count = 1 xcache.var_slots = 8K xcache.var_ttl = 0 xcache.var_maxttl = 0 xcache.var_gc_interval = 300 ; N/A for /dev/zero xcache.readonly_protection = Off xcache.mmap_path = "/dev/zero" xcache.cacher = On xcache.stat = On


Tutorials & How-to's
LinkBack URL
About LinkBacks
Reply With Quote