You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
404 B

  1. <?php
  2. require_once dirname(__FILE__) . '/../../Public/init.php';
  3. //require_once '/home/dogstar/projects/library.phalapi.net/Public/init.php';
  4. DI()->loader->addDirs(array('Demo', 'Library', 'Library/Task/Task'));
  5. try {
  6. $progress = new Task_Progress();
  7. $progress->run();
  8. } catch (Exception $ex) {
  9. echo $ex->getMessage();
  10. echo "\n\n";
  11. echo $ex->getTraceAsString();
  12. // notify ...
  13. }