forked from yuantuo666/baiduwp-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.php
55 lines (48 loc) · 2.25 KB
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
/**
* PanDownload 网页复刻版,PHP 语言版配置文件
*
* 务必要保证此文件存在,否则整个服务将会不可使用!
*
* 务必要设置 SVIP 账号的 BDUSS 和 STOKEN ,否则将会无法获取链接!
*
* 请按提示修改配置!请勿随意修改常量名等不可更改的内容!
*
* 若你要向公网开启服务,务必要启用密码验证功能!否则后果自负!
* 请不要使用弱密码!否则后果自负!
* 若只在局域网开放,则可根据个人喜好开启或关闭密码。
*
* @version 1.4.5
*
* @author Yuan_Tuo <[email protected]>
* @link https://imwcr.cn/
* @link https://space.bilibili.com/88197958
*
*/
const programVersion = '1.4.5';
if (!defined('init')) { // 直接访问处理程序
http_response_code(403);
header('Content-Type: text/plain; charset=utf-8');
header('Refresh: 3;url=./');
die("HTTP 403 禁止访问!\r\n此文件是 PanDownload 网页复刻版 PHP 语言版项目版本 " . programVersion . " 的配置文件!\r\n禁止直接访问!");
}
const BDUSS = ''; // 你的 BDUSS
const STOKEN = ''; // 你的 STOKEN
const SVIP_BDUSS = ''; // 你的 SVIP BDUSS
const IsCheckPassword = true; // 设为 true 则要求密码为变量 Password 的值,否则提示密码错误;设为 false 则不需要密码。
const Password = '请在这里填写密码啦!ヾ(≧▽≦*)o'; // 在下载器首页需要输入的密码,如果将 IsCheckPassWord 设为 false 则无论设置什么都会失效。
const Footer = ''; // 页脚统计代码放置处。
const APP_ID = '250528'; // 推荐应用ID:498065、309847、778750(油猴脚本默认)、250528(官方)、265486、266719;
const DEBUG = false; //WARNING! 请勿随意打开此模式,可能造成你的信息泄露!打开此模式前请先修改密码。
//连接数据库
const USING_DB = true;
const DbConfig = array(
"servername" => "localhost",
"username" => "root",
"password" => "password",
"dbname" => "baiduwp",
"dbtable" => "bdwp"
);
const ADMIN_PASSWORD = '管理员密码'; //管理员密码,务必要修改!!!登录地址 setting.php
// 请勿修改下方内容,如果手动修改后再在后台设置,可能导致config.php文件被清空
const DownloadTimes = 5;