View Single Post
  #101  
Old 14th October 2008, 15:52
johnake's Avatar
johnake johnake is offline
Senior Member
 
Join Date: Dec 2007
Posts: 52
Default
Quote:
Originally Posted by moldyq View Post
I have done this already it prints me that the /bogus cannot be found
Do you have mod_rewrite enabled in httpd.conf?

If not search for this line in httpd.conf:

Code:
#LoadModule rewrite_module modules/mod_rewrite.so
and replace it with:
Code:
LoadModule rewrite_module modules/mod_rewrite.so
or delete the #

And then restart apache server and it should work!
__________________
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