123456789101112131415161718192021222324252627282930313233 |
- <?php
- /**
- * 本破解程序由三岁半资源网提供
- * 三岁半资源网www.sansuib.com
- * QQ:89171639 承接网站建设、公众号搭建、小程序建设、企业网站
- */
- if (version_compare(PHP_VERSION, '5.3.0', '<')) die('require PHP > 5.3.0 !');
- header("Content-Type:text/html; charset=utf-8");
- define('APP_DEBUG', true);
- define('BIND_MODULE', 'Home');
- define('APP_PATH', './Modules/');
- if (!is_file('Modules/Common/Conf/db.php')) {
- header('Location: ./install.php');
- exit;
- }
- //index.php?c=Public&a=login
- //Payment/weixin_notify
- $_GET['c'] = 'Payment';
- $_GET['a'] = 'weixin_notify';
- define('ROOT_PATH', str_replace('\\', '/', dirname(__FILE__)) . '/');
- define('RUNTIME_PATH', './Runtime/');
- require './ThinkPHP/ThinkPHP.php';
- ?>
|