LARAVEL5.1创建应用流程
本次采用composer进行安装,参考地址如下
http://stackoverflow.com/questions/28893710/whoops-looks-like-something-went-wrong-laravel-5-0
总结如下
确定你的项目文件夹 storage 和 bootstrap/cache 的写入权限
把项目中的 .env.example 文件复制一份命名为 .env 作为配置文件,会被读取
在项目根文件夹执行 php artisan key:generate ,重置对应的加密字段
检查你的 php_openssl 的扩展有没有安装上
框架作为接口的几个处理流程
- 访问控制 get/post的相关访问
- 资源过滤,对输入的参数进行过滤
- 数据库控制,方便的进行增删改
- 路由控制
- 加密token处理
- 环境切换,方便的进行本地测试线上的配置文件切换
看框架是不是好用就看对应的设置是不是人性化。
LARAVEL执行PHP ARTISAN MIGRATE出现问题以及解决方案
参考资料
http://stackoverflow.com/questions/20723803/pdoexception-sqlstatehy000-2002-no-such-file-or-directory
http://laravel.com/docs/5.1/artisan#usage
执行
php artisan migrate
问题
[PDOException]
SQLSTATE[HY000] [2002] No such file or directory
解决方案
还是找到了 stackoverflow 上的答案
先说原因,因为框架没有找到对应的mysql执行,修改的文件的位置 ./config/database.php 的mysql
1.执行sql语句 show variables like ‘%sock%’
2.对应返回的结果的字段 socket 的对应的value,一般的结果大概长这个样子 /tmp/mysql.sock
3.修改文件 ./config/database.php 中的 connections 下的 mysql 添加
‘unix_socket’ => ‘/tmp/mysql.sock’
这样就可以执行了
Migration table created successfully.
Migrated: 2014_10_12_000000_create_users_table
Migrated: 2014_10_12_100000_create_password_resets_table
Migrated: 2015_12_14_090428_create_tasks_table
遗留问题,本地环境,测试环境,线上环境可能对应的mysql.sock的位置不一样,怎么设置