Thread: NetVision v2.0
View Single Post
  #12  
Old 4th December 2008, 22:14
johnake's Avatar
johnake johnake is offline
Senior Member
 
Join Date: Dec 2007
Posts: 52
Default
The solution to your downloading problem is pretty easy. The config file allows both rewrite and attachment mod of download. So, short story the solution is:

open up /include/config.php

Find this line:
PHP Code:
$GLOBALS["DOWNLOAD_METHOD"] = DOWNLOAD_REWRITE
Replace it with:
PHP Code:
$GLOBALS["DOWNLOAD_METHOD"] = DOWNLOAD_ATTACHMENT
Good luck!
__________________
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