httpd server problem

zbahadir

Verified User
Joined
Apr 17, 2006
Messages
20
Location
Türkiye
Fixed : httpd server problem

Restart httpd
/etc/init.d/httpd restart

or
service httpd restart

gives this error

Fatal error: Call to undefined method IPSLib::appisSearchable() in /home/xxx/domains/domain.com/public_html/cache/skin_cache/cacheid_67/skin_global.php on line 966

This problem occurs every night in 24.00

---

If you do not have problem with this is as
http://ip:2222/CMD_SERVICE?action=restart&service=httpd
 
Last edited:
Try to recompile php.

cd /usr/local/directadmin/custombuild
./build update
./build clean
./build php d
 
It appears that you're using a PHP module in Apache to run PHP, and that there's something in your site that's not compatible with the version of PHP you're using.

That would be my guess.

Jeff
 
Debian 6.0 / 64Bit

php -v
PHP 5.3.6 (cli) (built: Apr 11 2011 08:11:51)
Copyright (c) 1997-2011 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2011 Zend Technologies
with XCache v1.3.0, Copyright (c) 2005-2009, by mOo
with the ionCube PHP Loader v4.0.7, Copyright (c) 2002-2011, by ionCube Ltd.

:~# httpd -v
Server version: Apache/2.2.17 (Unix)
Server built: Apr 11 2011 04:42:15


Edit:
Fixex: set environment lang to;
export LANG="C"

Debian Fixed:
echo 'LANG="C"' >> /etc/default/locale
 
Last edited:
Back
Top