Esempio n. 1
0
 public function __construct()
 {
     set_time_limit(0);
     cachemgr::init(false);
     cacheobject::init(false);
     vmc::$console_output = true;
     set_error_handler(array(&$this, 'error_handle'));
     $this->buildin_commander = new base_shell_buildin($this);
 }
Esempio n. 2
0
 function __construct()
 {
     header('Content-type: text/html;charset=utf-8');
     ignore_user_abort(false);
     ob_implicit_flush(1);
     ini_set('implicit_flush', true);
     set_error_handler(array(&$this, 'error_handle'));
     chdir('data');
     vmc::$console_output = true;
     while (ob_get_level()) {
         ob_end_flush();
     }
     echo str_repeat("", 1024);
     //$this->buildin_commander = new base_shell_buildin($this);
     parent::__construct();
 }