1.用户系统 用户可以在线充值 购买授权
2.全站ajax
3.等等很多功能 你们慢慢看吧
4.修改数据库信息:includes/config.php
导入数据库文件:auth.sql
5.本次免费发布 无后门无加密 包更新 欢迎各大网友进群来说出你想要的功能
6.后台:域名/index.php?m=Admin&v=login
账户:admin
密码:123456
修改首页内容文件:\template\Index\index.php
授权代码加在公共调用文件里:
if(!isset($_SESSION['authcode'])) {
$query=file_get_contents('http://您的授权网站域名/check.php?url='.$_SERVER['HTTP_HOST'].');
if($query=json_decode($query,true)) {
if($query['code']==1)$_SESSION['authcode']=true;
else exit(' '.$query['msg'].' ');
}
}