install.php 832 B

1234567891011121314151617181920212223242526272829303132333435
  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('BIND_MODULE', 'Install');
  10. define('APP_DEBUG', true);
  11. define('APP_PATH', './Modules/');
  12. define('RUNTIME_PATH', './Runtime/');
  13. if (!is_dir(RUNTIME_PATH)) {
  14. if (!mkdir(RUNTIME_PATH, 0777)) {
  15. header('Content-Type:text/html; charset=utf-8');
  16. exit('目录 [ ' . RUNTIME_PATH . ' ] 不存在!');
  17. }
  18. }
  19. if (!is_writeable(RUNTIME_PATH)) {
  20. header('Content-Type:text/html; charset=utf-8');
  21. exit('目录 [ ' . RUNTIME_PATH . ' ] 不可写!');
  22. }
  23. require './ThinkPHP/ThinkPHP.php';