开源项目系列之laravel-bjyblog博客

学习框架最好的办法就是用它;
毕竟百闻不如一run;
作为一个在技术上不折腾不舒服斯基的程序猿;
我已经全面的转向 laravel;
那么之前用 thinkphp 开发的博客 thinkphp-bjyblog 也有必要升级一下了;
于是就有了本篇文章介绍的项目 laravel-bjyblog

换laravel真的需要勇气去面对六眼飞鱼;
中间虽然经历了不少的问题;
但是我表示不后悔;
因为博客的整个质量上升了一个层次;
经过了半年多的不断测试调整;
最近终于稳定下来了;
于是也终于可以 releases 一个正式版了;
现在第一个正式版本是 5.3.0.1;
前两位是主版本号是跟 laravel 框架同步;
5.3 表示使用的是 laravel5.3 版本的框架;
为什么不是5.5?
因为我是在1年前开始开发这个博客的;
那时候 laravel 最新版是5.3;
后续我会把博客跟着 laravel 框架升级到最新版;
接着的第三位0是次版本号;
表示有破坏性的更新;
升级的时候需要认真阅读升级文档;
第四位1是修订号;
一般是bug修复或较小的改动可以放心的直接升级;

下面我们进入安装使用环节;
↓↓↓↓↓↓↓↓↓↓↓↓此处是后来补充的内容↓↓↓↓↓↓↓↓
为了详细介绍下载安装的过程;
我单独写了篇文章;
如何正确的下载安装使用别人的laravel项目?
↑↑↑↑↑↑↑↑↑↑↑↑此处是后来补充的内容↑↑↑↑↑↑↑↑
不过需要注意的是;
git pull 前务必查看项目主页的更新记录;
如果有破坏性更新我会注明;

安装完我们现在有一个 blog 项目了;
配置好本地环境主要是指向 blog/public 目录;
参考 phpstudy配置虚拟主机及开启扩展;

ok;人品没问题的话;
一个跟我博客一样的项目就完成了;
后台 /admin/index/index
默认账号:test@test.com
初始密码:123456
如果人品爆发出现了如下错误;
The page has expired due to inactivity.Please refresh and try again.
换个浏览器试试;
清空浏览器缓存可以解决;

登录后台后去系统设置中把配置改为自己的;
申请QQ登录的时候填写的回调地址如下:
http://baijunyao.com/auth/oauth/handleProviderCallback/qq
把 baijunyao.com 改为自己的域名即可;
如果使用 ssl 记得把 http 改为https;
github回调地址:http://baijunyao.com/auth/oauth/handleProviderCallback/github
微博回调地址:http://baijunyao.com/auth/oauth/handleProviderCallback/weibo
填好邮箱账号密码有评论的时候就会自动发送邮件通知双方;
邮箱的申请可以参考thinkphp整合系列之phpmailer批量发送邮件
如果不需要右侧的加入组织功能;
可以在后台把配置项设置为空;
前台就不再展示加入组织模块了;
开源项目同理;
把默认的数据删除;
前台就不再展示开源项目模块了;

使用 thinkphp-bjyblog 的童鞋我并没有抛弃你们;
我还准备好了命令行;
可以把数据一键从 thinkphp-bjyblog 迁移到 laravel-bjyblog;
配置OLD_DB_HOST、OLD_DB_PORT、OLD_DB_DATABASE、OLD_DB_USERNAME、OLD_DB_PASSWORD 为thinkphp-bjyblog的数据库;
然后运行 php artisan migration:fromThinkPHPBjyBlog

独行快;众行远;
在使用的过程中有任何问题;
可以随时给我反馈;
我会尽快修复;
也欢迎在 github 上面提交PR;

laravel-bjyblog

================ 分割线 ===============
现在有了更详细的文档: https://baijunyao.com/docs/laravel-bjyblog/

白俊遥博客
请先登录后发表评论
  • latest comments
  • 总共84条评论
白俊遥博客

一个只用右手的左撇子 :我使用v14.1.16的代码,php7.3版本中文语言包未生效,配置好像都没问题,我直接拉取的laravel8的一个demo中文语言包有效,大佬知道原因嘛?

2021-05-27 00:55:35 回复

白俊遥博客

wskeee :大牛,你博客做个目录啊,找东西好麻烦

2019-12-19 21:18:03 回复

白俊遥博客

二楼 :请问 添加文章和编辑文章的时候 markdown 转 html 是在那里做的操作?看了您的源码,没有找到。还有就是您用的什么 markdow 转 html 的包?

2019-09-05 10:25:50 回复

白俊遥博客

I Do 白俊遥博客

2018-11-26 09:26:29 回复

白俊遥博客

江海豪 :左上角的白俊遥博客怎么换字呀?配置文件找半天没找到?

2018-07-30 02:15:44 回复

白俊遥博客 白俊遥博客

云淡风晴 :在管理后台改的;

2018-08-05 16:28:53 回复

白俊遥博客

大智若愚 :白大神,从旧版的迁移到新版的后很多页面上的代码块都无法正常显示了,有没有什么办法解决呢

2018-07-11 10:07:33 回复

白俊遥博客 白俊遥博客

云淡风晴 :是运行 php artisan migration:fromThinkPHPBjyBlog 的吗?

2018-07-22 23:17:38 回复

白俊遥博客

你二不二二就在呢 :root@localhost:/www/web # composer create-project baijunyao/laravel-bjyblog  blog && cd blog && php artisan bjyblog:install && php artisan bjyblog:migrateDo not run Composer as root/super user! See https://getcomposer.org/root for detailsInstalling baijunyao/laravel-bjyblog (v5.5.0.20)  - Installing baijunyao/laravel-bjyblog (v5.5.0.20): Downloading (100%)         Created project in blog> @php -r "file_exists('.env') || copy('.env.example', '.env');"Loading composer repositories with package informationInstalling dependencies (including require-dev) from lock fileYour requirements could not be resolved to an installable set of packages.  Problem 1    - Installation request for doctrine/annotations v1.6.0 -> satisfiable by doctrine/annotations[v1.6.0].    - doctrine/annotations v1.6.0 requires php ^7.1 -> your PHP version (7.0.5) does not satisfy that requirement.  Problem 2    - Installation request for doctrine/cache v1.7.1 -> satisfiable by doctrine/cache[v1.7.1].    - doctrine/cache v1.7.1 requires php ~7.1 -> your PHP version (7.0.5) does not satisfy that requirement.  Problem 3    - Installation request for doctrine/collections v1.5.0 -> satisfiable by doctrine/collections[v1.5.0].    - doctrine/collections v1.5.0 requires php ^7.1 -> your PHP version (7.0.5) does not satisfy that requirement.  Problem 4    - Installation request for doctrine/common v2.8.1 -> satisfiable by doctrine/common[v2.8.1].    - doctrine/common v2.8.1 requires php ~7.1 -> your PHP version (7.0.5) does not satisfy that requirement.  Problem 5    - Installation request for doctrine/dbal v2.7.1 -> satisfiable by doctrine/dbal[v2.7.1].    - doctrine/dbal v2.7.1 requires php ^7.1 -> your PHP version (7.0.5) does not satisfy that requirement.  Problem 6    - Installation request for doctrine/inflector v1.3.0 -> satisfiable by doctrine/inflector[v1.3.0].    - doctrine/inflector v1.3.0 requires php ^7.1 -> your PHP version (7.0.5) does not satisfy that requirement.  Problem 7    - Installation request for symfony/console v3.4.8 -> satisfiable by symfony/console[v3.4.8].    - symfony/console v3.4.8 requires php ^5.5.9|>=7.0.8 -> your PHP version (7.0.5) does not satisfy that requirement.  Problem 8    - Installation request for symfony/css-selector v4.0.8 -> satisfiable by symfony/css-selector[v4.0.8].    - symfony/css-selector v4.0.8 requires php ^7.1.3 -> your PHP version (7.0.5) does not satisfy that requirement.  Problem 9    - Installation request for symfony/debug v3.4.8 -> satisfiable by symfony/debug[v3.4.8].    - symfony/debug v3.4.8 requires php ^5.5.9|>=7.0.8 -> your PHP version (7.0.5) does not satisfy that requirement.  Problem 10    - Installation request for symfony/event-dispatcher v4.0.8 -> satisfiable by symfony/event-dispatcher[v4.0.8].    - symfony/event-dispatcher v4.0.8 requires php ^7.1.3 -> your PHP version (7.0.5) does not satisfy that requirement.  Problem 11    - Installation request for symfony/finder v3.4.8 -> satisfiable by symfony/finder[v3.4.8].    - symfony/finder v3.4.8 requires php ^5.5.9|>=7.0.8 -> your PHP version (7.0.5) does not satisfy that requirement.  Problem 12    - Installation request for symfony/http-foundation v3.4.8 -> satisfiable by symfony/http-foundation[v3.4.8].    - symfony/http-foundation v3.4.8 requires php ^5.5.9|>=7.0.8 -> your PHP version (7.0.5) does not satisfy that requirement.  Problem 13    - Installation request for symfony/http-kernel v3.4.8 -> satisfiable by symfony/http-kernel[v3.4.8].    - symfony/http-kernel v3.4.8 requires php ^5.5.9|>=7.0.8 -> your PHP version (7.0.5) does not satisfy that requirement.  Problem 14    - Installation request for symfony/process v3.4.8 -> satisfiable by symfony/process[v3.4.8].    - symfony/process v3.4.8 requires php ^5.5.9|>=7.0.8 -> your PHP version (7.0.5) does not satisfy that requirement.  Problem 15    - Installation request for symfony/routing v3.4.8 -> satisfiable by symfony/routing[v3.4.8].    - symfony/routing v3.4.8 requires php ^5.5.9|>=7.0.8 -> your PHP version (7.0.5) does not satisfy that requirement.  Problem 16    - Installation request for symfony/translation v4.0.8 -> satisfiable by symfony/translation[v4.0.8].    - symfony/translation v4.0.8 requires php ^7.1.3 -> your PHP version (7.0.5) does not satisfy that requirement.  Problem 17    - Installation request for symfony/var-dumper v3.4.8 -> satisfiable by symfony/var-dumper[v3.4.8].    - symfony/var-dumper v3.4.8 requires php ^5.5.9|>=7.0.8 -> your PHP version (7.0.5) does not satisfy that requirement.  Problem 18    - Installation request for doctrine/instantiator 1.1.0 -> satisfiable by doctrine/instantiator[1.1.0].    - doctrine/instantiator 1.1.0 requires php ^7.1 -> your PHP version (7.0.5) does not satisfy that requirement.  Problem 19    - Installation request for symfony/class-loader v3.4.8 -> satisfiable by symfony/class-loader[v3.4.8].    - symfony/class-loader v3.4.8 requires php ^5.5.9|>=7.0.8 -> your PHP version (7.0.5) does not satisfy that requirement.  Problem 20    - doctrine/inflector v1.3.0 requires php ^7.1 -> your PHP version (7.0.5) does not satisfy that requirement.    - laravel/framework v5.5.40 requires doctrine/inflector ~1.1 -> satisfiable by doctrine/inflector[v1.3.0].    - Installation request for laravel/framework v5.5.40 -> satisfiable by laravel/framework[v5.5.40].

2018-04-22 01:32:12 回复

白俊遥博客 白俊遥博客

云淡风晴 :翻译下这句话 doctrine/annotations v1.6.0 requires php ^7.1 -> your PHP version (7.0.5)  ;

2018-04-22 21:21:04 回复

白俊遥博客

Toy Soldier :使用第一种安装方式,安装成功,但是进入后台出现输入用户名和密码后一直是弹出登录框,请问一下是怎么回事

2018-04-04 22:53:06 回复

白俊遥博客

Toy Soldier :使用第一种安装方式,安装成功,但是进入后台出现输入用户名和密码后一直是弹出登录框,请问一下是怎么回事

2018-04-04 22:51:04 回复

白俊遥博客

岁月清浅 安之若素 :linux服务器第二种git安装不能用,报错Permission denied (publickey). fatal: The remote end hung up unexpectedl,如何破

2018-03-25 23:44:22 回复

白俊遥博客

岁月清浅 安之若素 :解决了,服务器上生成公钥,将公钥添加到自己gitee账号的ssh公钥列表中就可以了

2018-03-26 10:07:14 回复

白俊遥博客 白俊遥博客

云淡风晴 :是的;git clone 需要配置好 ssh ;

2018-03-31 19:31:45 回复

白俊遥博客

Chainsmokers :第三方登录,github配置key都好了,点击GitHub登录完成后,跳转回来报错了

2018-03-22 11:47:28 回复

白俊遥博客 白俊遥博客

云淡风晴 :是的;git clone 需要配置好 ssh ;

2018-03-31 19:31:17 回复

白俊遥博客 白俊遥博客

云淡风晴 :报什么错?

2018-03-31 19:31:54 回复

白俊遥博客

Chainsmokers :微博的报错https://ws1.sinaimg.cn/large/006tKfTcgy1fq1uubjd7cj30f007swf0.jpg,GitHub的报错https://ws1.sinaimg.cn/large/006tKfTcgy1fq1uuwx0y2j317w0lwgsg.jpg

2018-04-05 16:22:44 回复

白俊遥博客 白俊遥博客

云淡风晴 :回调地址不正确;参考我的回调地址;

2018-04-22 21:43:07 回复

白俊遥博客

悠悠云追月 :The authenticity of host 'gitee.com (116.211.167.14)' can't be established.ECDSA key fingerprint is SHA256:FQGC9Kn/eye1W8icdBgrQp+KkGYoFgbVr17bmjey0Wc.Are you sure you want to continue connecting (yes/no)? yesWarning: Permanently added 'gitee.com,116.211.167.14' (ECDSA) to the list of known hosts.git@gitee.com: Permission denied (publickey).fatal: Could not read from remote repository.Please make sure you have the correct access rightsand the repository exists.使用git下载代码不能用了吗?

2018-03-21 15:30:10 回复

白俊遥博客 白俊遥博客

云淡风晴 :可以用的;  yes 下;

2018-03-31 19:32:27 回复

白俊遥博客

王加文 :为什么在后台添加文章,提示信息为添加错误。但文章已添加。。这个问题怎么改  

2018-03-20 08:49:40 回复

白俊遥博客

王加文 :发现原因了 //添加数据$result = $this ->create($data) ->id;这段信息返回值为0 所以会报错

2018-03-20 09:38:37 回复

白俊遥博客 白俊遥博客

云淡风晴 :多谢反馈;已修复;

2018-03-31 19:40:34 回复

白俊遥博客

QQdjq :E:\Program Files\php2016\WWW\laravel-bjyblog-master\app\Http\Controllers\Home\IndexController.php 35行报错    Call to a member function get() on null  值为空,请求支援!  请各位大神支招 之前已经解决了几个坑,自己的环境问题 + 加上extension_dir 、PHP artisan  key:generate 等   

2018-03-19 10:57:00 回复

白俊遥博客

QQdjq :自己填上值后,还有一堆等着我,不知道是哪一步错了,,,还请大神指点一二Undefined index: ADMIN_EMAIL (View: E:\Program Files\php2016\WWW\laravel-bjyblog-master\resources\views\layouts\home.blade.php) (View: E:\Program Files\php2016\WWW\laravel-bjyblog-master\resources\views\layouts\home.blade.php)

2018-03-19 11:02:30 回复

白俊遥博客 白俊遥博客

云淡风晴 :可能是缓存的问题;先清空下缓存试试;

2018-03-31 19:41:18 回复

白俊遥博客

:cache('config')一直获取不了值

2018-03-16 13:22:45 回复

白俊遥博客

Mrs.枫林晚 :很好 谢谢分享

2018-03-10 16:13:32 回复

白俊遥博客

霄卬 :遥神我lamp环境下,都装完后提示It is unsafe to run Dusk in production. 百度不得其解前来求助

2018-03-09 20:51:33 回复

白俊遥博客

(ˇˍˇ)~ :执行composer install --no-dev后重试ref:https://github.com/laravel/dusk/issues/289

2018-03-11 20:53:15 回复

白俊遥博客

摩幻小强 :白老大  我执行你的composer安装方式的命令  结果报错 :Could not find package baijunyao/laravel-bjyblog with stability stable in a version installable using your PHP vers  ion 5.5.30.  这个是为啥啊?

2018-03-07 16:37:20 回复

白俊遥博客

(ˇˍˇ)~ :php版本要7以上噢

2018-03-11 20:57:31 回复

白俊遥博客

A枫钻进我的依脚 :执行命令 php artisan bjyblog:install  出现中文乱码 需要如何解决

2018-03-04 16:11:08 回复

白俊遥博客 白俊遥博客

云淡风晴 :有什么提示吗?

2018-03-04 22:26:14 回复

白俊遥博客

(ˇˍˇ)~ :可以尝试换一个shell?

2018-03-11 20:59:16 回复

白俊遥博客

flyingdreams1111 :Warning: The lock file is not up to date with the latest changes in composer.json. You may be getting outdated dependencies. Run update to update them.Your requirements could not be resolved to an installable set of packages.

2018-02-28 19:30:46 回复

白俊遥博客

flyingdreams1111 :这是为什么?

2018-02-28 19:34:26 回复

白俊遥博客 白俊遥博客

云淡风晴 :这不算错误;用的时候有什么问题吗?

2018-03-04 22:26:55 回复

白俊遥博客

(ˇˍˇ)~ :例行提示撒~

2018-03-11 21:00:53 回复

白俊遥博客

Chainsmokers :执行php artisan bjyblog:install,报错了,账号密码都是对的In Connection.php line 664:  SQLSTATE[HY000] [1045] Access denied for user 'root'@'127.0.0.1' (using pas  sword: NO) (SQL: select * from information_schema.tables where table_schema   = blogdb and table_name = bjy_migrations)

2018-02-17 01:59:28 回复

白俊遥博客 白俊遥博客

云淡风晴 :试试最新版的看还有问题吗?

2018-03-04 22:27:15 回复

白俊遥博客

(ˇˍˇ)~ :1.可以尝试mysql添加新用户并授权,用新用户进行install2.尝试安装php7-mysql

2018-03-11 20:54:41 回复

白俊遥博客

记忆宫殿之旅 :php版本要大于7.0.8才能vvv,先在wamp上下了php7.2,openssl没装成功,vvv之后换成7.0.4进入后台了,白俊遥博客

2018-02-08 17:53:02 回复

白俊遥博客

墨雨 :大佬,文章描述如果为空,他不截取前200个字符,直接显示空的是啥情况??

2018-02-08 01:25:34 回复

白俊遥博客 白俊遥博客

云淡风晴 :在截取的地方打印下;看是因为什么?

2018-03-04 22:29:08 回复

白俊遥博客

二十三岁的九局下半丶 :我部署到linux服务器上,出现500错误。和本地对比调试发现问题在vendor\laravel\framework\src\Illuminate\Foundation\Http\Kernel.php 117行:$response = $this->sendRequestThroughRouter($request);能分析下是什么原因吗

2018-01-30 17:28:15 回复

白俊遥博客 白俊遥博客

云淡风晴 :linux 服务器需要权限;

2018-02-05 00:34:33 回复

白俊遥博客

安氏~ :请问,页面底部的监控是什么?

2018-01-29 11:57:37 回复

白俊遥博客

安氏~ :还有哦,为什么从ueditor用到markdown,是有什么更优秀的地方嘛?

2018-01-29 16:56:29 回复

白俊遥博客

(ˇˍˇ)~ :同问,如何隐藏qaq

2018-03-11 20:55:56 回复

白俊遥博客

Mr.Lu :Parse error: syntax error, unexpected 'class' (T_CLASS), expecting identifier (T_STRING) or variable (T_VARIABLE) or '{' or '$' in D:\phpStudy\WWW\blog\public\index.php on line 52

2018-01-08 23:38:32 回复

白俊遥博客 白俊遥博客

云淡风晴 :php版本太低?要求7以上;你百度下这个问题;看下别人给的方案符合你的情况不?

2018-01-22 05:39:39 回复

白俊遥博客

Mr.Lu :有在liunx上直接安装的教程吗?

2018-01-08 23:12:57 回复

白俊遥博客 白俊遥博客

云淡风晴 :安装过程不分系统;

2018-01-22 05:38:54 回复

白俊遥博客

找电影上琵琶影院 白俊遥博客完美安装

2018-01-04 22:35:05 回复

白俊遥博客

富库网 :Unable to boot ApiServiceProvider, configure an API domain or prefix.

2018-01-03 15:12:05 回复

白俊遥博客

天之涯 :SQLSTATE[42S22]: Column not found: 1054 Unknown column 's' in 'field list' (SQL: update `bjy_users` set `password` = $2y$10$Wj9i4JN/aMexUjBzD5KwgOy1j24HRrKvdkBo8unrpOhbo0LFq0jXe, `updated_at` = 2018-01-03 20:23:28, `s` = /admin/user/update/1 where `id` = 1)

2018-01-03 20:23:56 回复

白俊遥博客

天之涯 :laravel5.5 修改管理员密码报错了/admin/user/update/1

2017-12-28 12:04:27 回复

白俊遥博客 白俊遥博客

云淡风晴 :我测试了下没问题;报什么错了?怎么提示的?

2017-12-28 23:12:41 回复

白俊遥博客

天之涯 :SQLSTATE[42S22]: Column not found: 1054 Unknown column 's' in 'field list' (SQL: update `bjy_users` set `password` = $2y$10$Wj9i4JN/aMexUjBzD5KwgOy1j24HRrKvdkBo8unrpOhbo0LFq0jXe, `updated_at` = 2018-01-03 20:23:28, `s` = /admin/user/update/1 where `id` = 1)

2018-01-03 20:25:58 回复

白俊遥博客 白俊遥博客

云淡风晴 :这个s=是哪来的?正常修改的sql应该是 update `bjy_users` set `password` = '$2y$10$Wj9i4JN/aMexUjBzD5KwgOy1j24HRrKvdkBo8unrpOhbo0LFq0jXe', `updated_at` = '2018-01-03 20:23:28' where `id` = '1' ;你搞了rewrite;给加了s= ?

2018-01-07 09:49:10 回复

白俊遥博客

天之涯 :修复了,nginx配置的时候多带了个s,谢啦,大佬

2018-01-10 18:59:14 回复

白俊遥博客

FBLMG :.

2018-01-22 16:02:21 回复

白俊遥博客

吟游诗 :感谢白大大无私奉献这么好的东西

2017-12-25 14:00:36 回复

白俊遥博客

微笑^_^ :composer install -vvv进入CMD使用命令出现一堆文字atisfy that requirement. Problem 2 - Installation request for appstract/laravel-opcache 1.3.3 -> satisfiable by appstract/laravel-opcache[1.3.3]. - appstract/laravel-opcache 1.3.3 requires php >=5.6 -> your PHP version (5. 5.38) does not satisfy that requirement. Problem 3 - Installation request for appstract/lush-http 0.5.1 -> satisfiable by appst ract/lush-http[0.5.1]. - appstract/lush-http 0.5.1 requires php >=5.6 -> your PHP version (5.5.38) does not satisfy that requirement. Problem 4 - Installation request for doctrine/inflector v1.2.0 -> satisfiable by doctr ine/inflector[v1.2.0]. - doctrine/inflector v1.2.0 requires php ^7.0 -> your PHP version (5.5.38) d oes not satisfy that requirement. Problem 5 - Installation request for intervention/image 2.4.1 -> satisfiable by interv ention/image[2.4.1]. - intervention/image 2.4.1 requires ext-fileinfo * -> the requested PHP exte nsion fileinfo is missing from your system. Problem 6 - Installation request for laravel/framework v5.3.31 -> satisfiable by larav el/framework[v5.3.31]. - laravel/framework v5.3.31 requires php >=5.6.4 -> your PHP version (5.5.38 ) does not satisfy that requirement. ...

2017-12-22 08:48:08 回复

白俊遥博客 白俊遥博客

云淡风晴 :缺少 fileinfo 扩展

2017-12-24 18:35:51 回复

白俊遥博客

找电影上琵琶影院 :后台的编辑器是叫什么啊?挺不错的样子白俊遥博客

2017-12-17 16:02:04 回复

白俊遥博客 白俊遥博客

云淡风晴 :这个:https://pandao.github.io/editor.md/

2018-01-07 09:50:42 回复

白俊遥博客

岁月清浅 安之若素 :大神问下,tp版的数据库迁移到laravel版的,数据库有变化吗?迁移的话好迁移吗?

2017-12-15 19:02:06 回复

白俊遥博客 白俊遥博客

云淡风晴 :我准备好了命令行;一键迁移;阅读文章;可以先在本地测试;

2017-12-24 18:38:17 回复

白俊遥博客

嗅及不到你散发的体香╰ :我看了下,咱们的数据库文件在哪里呢

2017-12-28 09:37:01 回复

白俊遥博客 白俊遥博客

云淡风晴 :没有数据库文件;使用的是迁移和填充;看文章中的命令行;

2018-01-07 09:52:59 回复

白俊遥博客

就这样“ i”了 :大神,为什么我修改.env.example 这个文件的时候提示请输入文件名....我直接删除后面的.example后缀名删不了

2017-12-13 17:27:42 回复

白俊遥博客 白俊遥博客

云淡风晴 :使用命令行修改;

2017-12-24 18:38:36 回复

白俊遥博客

微笑向暖 :第一句话说的真是太好了!

2017-12-13 13:19:35 回复

白俊遥博客

fanfan :白俊遥牛逼!!!

2017-12-11 16:44:16 回复

白俊遥博客

null :顶一下

2017-12-11 14:08:41 回复

白俊遥博客

超懒不是超能力ℳℓ畅 :进入项目跟目录执行安装命令;这句话有错别字~~~

2017-12-11 10:03:17 回复

白俊遥博客 白俊遥博客

云淡风晴 :多谢提醒;已修改;

2017-12-24 18:39:37 回复

白俊遥博客

超懒不是超能力ℳℓ畅 :像大神致敬!!!!!

2017-12-11 10:01:39 回复

白俊遥博客

木头z 白俊遥博客"像"大神致敬;这句话有错别字~~~

2017-12-13 09:22:53 回复

白俊遥博客

上村树 :!!!!!!!

2017-12-18 14:57:10 回复