index.php 712 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. * 本破解程序由三岁半资源网提供
  4. * 三岁半资源网www.sansuib.com
  5. * QQ:89171639 承接网站建设、公众号搭建、小程序建设、企业网站
  6. */
  7. if (version_compare(PHP_VERSION, '5.3.0', '<')) die('require PHP > 5.3.0 !');
  8. header("Content-Type:text/html; charset=utf-8");
  9. define('APP_DEBUG', true);
  10. define('BIND_MODULE', 'Home');
  11. define('APP_PATH', './Modules/');
  12. if (!is_file('Modules/Common/Conf/db.php')) {
  13. header('Location: ./install.php');
  14. exit;
  15. }
  16. define('ROOT_PATH', str_replace('\\', '/', dirname(__FILE__)) . '/');
  17. define('ATTACHMENT_ROOT', ROOT_PATH . 'Uploads/image/');
  18. define('RUNTIME_PATH', './Runtime/');
  19. require './ThinkPHP/ThinkPHP.php';
  20. ?>