<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
It may be possible that the memcache configuration parameters are in
your php.ini file but that PHP was not compiled with the memcache
extension.&nbsp; When I perform the following command on our server at
Gigoit.org:<br>
<br>
php -i | grep memcache<br>
<br>
I get the following output:<br>
<br>
Configure Command =&gt;&nbsp; './configure' '--with-kerberos' '--with-bz2'
'--with-gd' '--with-imap' '--with-imap-ssl' '--enable-gd-native-ttf'
'--with-png' '--with-png-dir=/usr/local/lib' '--with-jpeg'
'--with-jpeg-dir=/usr/local/lib' '--with-zlib' '--with-ttf'
'--with-freetype' '--with-xpm' '--with-gettext' '--with-gmp'
'--with-mysql=/var/lib/mysql' '--with-mysqli=/usr/bin/mysql_config'
'--enable-pspell' '--with-xml' '--with-xmlrpc=shared'
'--with-mcrypt=/usr/local/lib'
'--with-apxs2=/usr/local/apache2/bin/apxs' '--enable-bcmath'
'--enable-calendar' '--enable-ftp' '--enable-mbstring=shared'
'--enable-memcache' '--enable-memory-limit' '--enable-mime-magic'
'--enable-rewrite' '--enable-so' '--enable-sockets' '--enable-speling'<br>
memcache<br>
memcache support =&gt; enabled<br>
memcache.allow_failover =&gt; 1 =&gt; 1<br>
memcache.chunk_size =&gt; 8192 =&gt; 8192<br>
memcache.default_port =&gt; 11211 =&gt; 11211<br>
memcache.max_failover_attempts =&gt; 20 =&gt; 20<br>
<br>
Note that when PHP was compiled the option '--enable-memcache' was
used.&nbsp; Admittedly my partner was the one who setup the server so I am
not the most knowledgeable.&nbsp; However, this may give you something to
look into.<br>
<br>
- John<br>
<br>
Suleman Ali wrote:
<blockquote
 cite="mid:36ef7aaf0708190948n4abe9319re62c95b3b4a0e30f@mail.gmail.com"
 type="cite">I'm seeing this PHP error when trying to instantiate a
Memcache object:<br>
  <br>
  <b>Fatal error</b>: Class 'Memcache' not found in <b>/home/sali/public_html/doubledare/lib2.php</b>
on line <b>2491<br>
  <br>
  </b><br>
The PHP memcached client is installed correctly as far as I can tell as
php -i | grep memcache returns the following:<br>
  <br>
[root@esgut3 doubledare]# php -i | grep memcache<br>
memcache<br>
memcache support =&gt; enabled<br>
memcache.allow_failover =&gt; 1 =&gt; 1<br>
memcache.chunk_size =&gt; 8192 =&gt; 8192<br>
memcache.default_port =&gt; 11211 =&gt; 11211<br>
memcache.max_failover_attempts =&gt; 20 =&gt; 20<br>
Registered save handlers =&gt; files user sqlite memcache <br>
  <br>
  <br>
Any ideas what I'm doing wrong?
</blockquote>
<br>
</body>
</html>