摘要: 一、安装 vagrant,virtualbox,一直下一步 二、安装 Homestead Vagrant Box1、vagrant box add laravel/homestead(或者提前下载virtualbox.box文件)2、如果提前下载好了.box文件,把viirtualbox.box文件 阅读全文
posted @ 2019-08-12 20:37 飞翔的贺兰猪 阅读(1478) 评论(0) 推荐(0) 编辑
摘要: %LocalAppData%\Atlassian\SourceTree\把上面一串放到我的电脑地址栏 一般会没有这个json文件(如果没有自己新建一个)内容替换成下面 阅读全文
posted @ 2019-08-12 20:35 飞翔的贺兰猪 阅读(142) 评论(0) 推荐(0) 编辑
摘要: ## 安装步骤 - git clone https://github.com/github-muzilong/laravel55-layuiadmin.git - 复制.env.example为.env - 配置.env里的数据库连接信息 - composer update - php artisa 阅读全文
posted @ 2019-08-12 20:33 飞翔的贺兰猪 阅读(1089) 评论(0) 推荐(0) 编辑
摘要: 产品适用:Navcat产品+中文版+64位注册机百度网盘链接: https://pan.baidu.com/s/1H49nNga9h0WHWKGWAGy18g 提取码: ri5d 1、cmd进入注册机目录执行命令navicat-patcher.exe "D:\Program Files\Premiu 阅读全文
posted @ 2019-08-12 20:32 飞翔的贺兰猪 阅读(24745) 评论(0) 推荐(0) 编辑
摘要: 1,查看artisan命令php artisanphp artisan list 2,查看某个帮助命令php artisan help make:model 3,查看laravel版本php artisan --version 4,使用 PHP 内置的开发服务器启动应用php artisan ser 阅读全文
posted @ 2019-07-17 09:21 飞翔的贺兰猪 阅读(2646) 评论(0) 推荐(0) 编辑
摘要: $ vagrant init # 初始化 $ vagrant up # 启动虚拟机 $ vagrant halt # 关闭虚拟机 $ vagrant reload # 重启虚拟机 $ vagrant ssh # SSH 至虚拟机 $ vagrant suspend # 挂起虚拟机 $ vagrant resume # 唤醒虚拟机 ... 阅读全文
posted @ 2019-07-17 09:15 飞翔的贺兰猪 阅读(232) 评论(0) 推荐(0) 编辑
摘要: 一、安装依赖包 二、再执行安装一个工具,不安装会导致pip安装失败 三、下载python3.7的包,有两种方法,一种是从官网下载,然后上传到CentOS上,另一种可以通过CentOS的wget命令直接下载。两者都可以。 1、官方下载: 打开python的官方网站:https://www.python 阅读全文
posted @ 2019-06-28 11:56 飞翔的贺兰猪 阅读(3449) 评论(0) 推荐(1) 编辑
摘要: 获取源码 打开配置文件 conf/app.conf,修改相关配置。 创建数据库webcron,再导入install.sql 运行 访问: http://localhost:8000 帐号:admin 密码:admin888 阅读全文
posted @ 2019-06-20 13:41 飞翔的贺兰猪 阅读(1143) 评论(0) 推荐(0) 编辑
摘要: host:指定该用户在哪个主机上可以登陆,如果是本地用户可用localhost,如果想让该用户可以从任意远程主机登陆,可以使用通配符% privileges:用户的操作权限,如SELECT,INSERT,UPDATE等,如果要授予所的权限则使用ALL databasename:数据库名 tablen 阅读全文
posted @ 2019-06-19 17:08 飞翔的贺兰猪 阅读(121) 评论(0) 推荐(0) 编辑
摘要: validate_password_length 8 # 密码的最小长度,此处为8。validate_password_mixed_case_count 1 # 至少要包含小写或大写字母的个数,此处为1。validate_password_number_count 1 # 至少要包含的数字的个数,此 阅读全文
posted @ 2019-06-19 16:59 飞翔的贺兰猪 阅读(1207) 评论(0) 推荐(0) 编辑