artisan是laravel提供的命令行接口,这里记录下常用的命令 ...
分类:
其他好文 时间:
2021-04-20 14:56:59
阅读次数:
0
wget http://download.savannah.gnu.org/releases/freetype/freetype-2.10.0.tar.bz2 tar -xf freetype-2.10.0.tar.bz2 cd freetype-2.10.0 ./configure --prefi ...
分类:
系统相关 时间:
2021-04-20 14:36:46
阅读次数:
0
1.simple_php ?<?php show_source(__FILE__); include("config.php"); $a=@$_GET['a']; $b=@$_GET['b']; if($a==0 and $a){ echo $flag1; } if(is_numeric($b)){ ...
分类:
其他好文 时间:
2021-04-20 14:34:36
阅读次数:
0
1.参考资料 官网trait介绍 larvel学院PHP新特性Trait 概览 跳转链接 链接 理解trait php 这门语言没法使用多继承即单继承模式,你只能使用你自己家里的东西因为你继承了自己家里的东西,同时你想 使用隔壁老王家里的东西这是不被允许的,即使你有继承权,但是我们不允许你进行继承多 ...
分类:
Web程序 时间:
2021-04-19 16:01:35
阅读次数:
0
通过nginx -t获得 nginx=`nginx -t 2>&1 | grep configuration` if [ ! -z "$nginx" ];then nginxtmp="${nginx#*file}" nginxf="${nginxtmp%test*}" echo $nginxf fi ...
分类:
系统相关 时间:
2021-04-19 15:38:16
阅读次数:
0
项目相关介绍请查看https://github.com/MultiChain/multichain-web-demo,简单来说就是multichain节点的网页可视化。 第一步:安装Apache 1 # 安装Apache2 2 sudo apt-get install apache2 3 # 重启A ...
分类:
Web程序 时间:
2021-04-19 15:35:39
阅读次数:
0
Ubuntu 20.04 更换阿里源 sudo cd /etc/apt/sources.list /etc/apt/sources.list.b // 备份原始文件 sudo chmod 777 /etc/apt/sources.list // 修改文件权限 sudo vi /etc/apt/sou ...
分类:
系统相关 时间:
2021-04-19 15:25:14
阅读次数:
0
在使用ie浏览器调用get请求时,如果请求方法一样,会默认先缓存,后面每次都先从缓存取,这个问题可能引发奇怪鉴权问题 普遍解决:get请求后加随机数,需要改代码 如果用的nginx做前端服务器,可以在server中增加配置项: add_header Cache-Control "no-cache, ...
分类:
其他好文 时间:
2021-04-19 15:16:50
阅读次数:
0
建议使用docker安装服务,防止软件安装失败导致系统重新安装。 Ubuntu 云服务器配置 一、安装 Apache 网站服务器 apt 系统安装 1.安装 Apache sudo apt update sudo apt install apache2 2.验证 Apache 是否正在运行 sudo ...
分类:
系统相关 时间:
2021-04-19 15:10:44
阅读次数:
0
前提条件: 已安装centos、docker nginx搭建方式: 1.首先进入centos系统,打开命令行 docker pull nginx:1.17.9 --安装指定版本nginx,这里选择1.17.9据说比较稳定 2.启动nginx docker run -p 80:80 nginx:1.1 ...
分类:
Web程序 时间:
2021-04-19 14:38:17
阅读次数:
0