systemctl status memcached çıktısı ile
normal bir şekilde active yazısını alıyorum. Litespeed + memcached kullanıyorum. Fakat websitemi taşıdığımda 500 hatası alıyorum. Error_log dosyasında ise:
PHP Fatal error: Uncaught Error: Class "Memcache" not found in /home/xxx/public_html/inc/class/db_config.php:26 Stack trace:
Gibi memcache hatası alıyorum. İlgili db_config.php
$mem = new Memcache;
$mem->connect('127.0.0.1', 11211) or die ("Memcached not connect");
$db= new ezSQL_mysqli($username,$password,$dbnbame,$servername,'utf8');
$dbnew= new ezSQL_mysqli($username,$password,$dbnbame,$servername,'utf8mb4');
$dbnew->query("SET NAMES 'utf8mb4'");yer almaktadır. Sorun burada nedir, yardımcı olabilecek var mıdır?