index.php 513 B

12345678910111213141516
  1. <?php
  2. if(!is_file('./Cache/config.php'))header("location: ./Install");
  3. header("Content-type: text/html;charset=utf-8");
  4. ini_set('memory_limit','32M');
  5. error_reporting(E_ERROR | E_WARNING | E_PARSE);
  6. define('Ainaphp',true);
  7. define('UPLOAD_PATH','./Uploads/');
  8. define('VERSION','v2.2 Released');
  9. define('UPDATETIME','20121225');
  10. define('APP_NAME', 'Ainaphp');
  11. define('APP_PATH', './Ainaphp/');
  12. define('APP_LANG', false);
  13. define('APP_DEBUG',false);
  14. define('THINK_PATH','./Core/');
  15. require(THINK_PATH.'Core.php');
  16. ?>