乐娱02娱乐城

竞技体育,真人娱乐,彩票投注,电子游戏,棋牌娱乐,捕鱼游戏

管理功能

管理后台界面大方、操作简单、功能齐全、接口众多、双端管理,完美并齐BBIN宝盈包网

多元化产品新功能

新模板集成电子真人账号晋级、签到、余额宝、红包、免息借呗、本地彩票,且支持简体中文、繁体中文、英文、泰文、越南语让您客户遍布全球。

丰富的游戏API接口

灵活而强大的API集成引擎,可以将所有游戏产品套件整合到一个完整的跨平台系统,并且持续不断新增第三方合作游戏供应商。

 

搭建工具

【Windows】

工具下载:https://1drv.ms/f/s!AsiYChM07d7OgnILKymenMIAVPA9?e=mCZ7Mp

upupw为集成环境;Notepad为编辑器;游戏记录采集器为自动刷新采集工具;
Navicat为数据库管理工具(PatchNavicat是破解补丁,先安装好后再运行破解文件;覆盖*:\Program Files (x86)\PremiumSoft\Navicat for MySQL目录下文件)

【Linux】

宝塔纯净版 7.6.0版本 [稳定版本/推荐]

Centos全新安装命令:根据系统执行框内命令开始安装(大约2分钟完成面板安装)升级后可能需要重启面板

yum install -y wget && wget -O install.sh http://v7.hostcli.com/install/install_6.0.sh && sh install.sh

搭建必看

1:打开后台 public 目录,在该目录内搜索 .php 文件,如果搜索到,只留下 index.php 其他的php文件全部删除

2:运营时env文件内的 APP_DEBUG=true 必须修改为 APP_DEBUG=false 否则可能造成安全隐患

3:数据库信息修改复杂一点,数据库默认端口建议改掉

 

然后打开后台 routes 目录,如果存在api2.php文件,则删除该文件,然后打开api.php找到大概53行左右
看到该行代码 Route::post(‘/uploadimg’,’Api\AuthController@uploadimg’); 删除该行

然后打开后台目录 app\Http\Controllers\Api\AuthController.php 打开该文件找到大概754行左右
如果存在以下代码:
public function uploadimg(Request $request)
{
$token = $request->header(‘authorization’);
$token = str_replace(‘Bearer ‘,”,$token) ;
$user = User::where(‘api_token’,$token)->first();
$data = $request->all();
\Illuminate\Support\Facades\Log::info(“上传回调结果”);
\Illuminate\Support\Facades\Log::info($_FILES);
\Illuminate\Support\Facades\Log::info(json_encode($_FILES));

$filename=$_FILES[‘file’][‘name’];
$type=$_FILES[‘file’][‘type’];
// echo $type;
$fileTypes = array(‘image/png’,’image/jpg’,’image/jpeg’);
if (!in_array($type,$fileTypes)){
return $this->returnMsg(201,”,’上传失败’);
}
$tmp_name=$_FILES[‘file’][‘tmp_name’];
$size=$_FILES[‘file’][‘size’];
$error=$_FILES[‘file’][‘error’];
$temp = explode(‘.’,$filename);
$name = $temp[0];
$typePic = $temp[1];
$filename = time().”.”.$typePic;
$save = ‘/uploads/avatar/’.basename($filename);
$stored_path = APPPATH.$save;
$res = move_uploaded_file($tmp_name, $stored_path);
$httpsStr = env(‘APP_URL’);
$stored_path = $httpsStr.$save;
$user->avatar = $save;
$rest = $user->save();
//$rest = $this->uploadImgSql($types,$stored_path,$user_id,$rid);
if ($rest){
echo $stored_path;
}else{
echo ”;
}
}

上面代码全部删除

伪静态

apache伪静态
Options +FollowSymLinks -Indexes
RewriteEngine On
RewriteCond %{HTTP:Authorization} .
RewriteRule .* – [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]

nginx伪静态
location / {

try_files $uri $uri/ /index.php?$query_string;

}

 

    声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。