Thread: help please
View Single Post
  #2  
Old 3rd November 2008, 00:49
johnake's Avatar
johnake johnake is offline
Senior Member
 
Join Date: Dec 2007
Posts: 52
Default
turtuga, go to your xampp install directory ->apache/bin, there you should have php.ini file

find this line:
Code:
;extension=php_memcache.dll
and replace it with:

Code:
extension=php_memcache.dll
After you save the php.ini file, restart apache, and you should have no problems.

Cheers!
__________________
PHP Code:
class mySelf extends World
   
{
       public 
$health;
       private 
$friends;
       protected 
$love;
  
   public function 
__construct()
  {
       
$this->health 100;
       
$this->friends 2;
       
$this->love true;
  }
  protected function 
__love()
  { 
      
//has a bug... for the moment...
      //will fix it later.. until then:
      
sleep(15*365*24*3600);
  }

Reply With Quote
The Following 3 Users Say Thank You to johnake For This Useful Post:
H3T87 (5th November 2008), PLM (5th February 2009), turtuga (10th November 2008)