当前位置: 首页 > 工具软件 > WNMP+ > 使用案例 >

wnmp环境composer安装laravel

经和歌
2023-12-01
  • laravel有多种安装方式,通过 Laravel 安装器,通过composer安装,此处我们使用的本地phpstudy搭建的wnmp环境,采用了composer安装。

1.cd到工作目录,使用composer下载,此时我的工作目录为K:\WWW\laravel,安装了5.7版本,会在K:\WWW\laravel目录下生成weibo57项目

composer create-project --prefer-dist laravel/laravel weibo57 "5.7.*"

2.修改nginx中的vhost文件,将此网站的根目录定位到weibo/public中
3.修改数据库配置文件config/database.php,为自己的配置参数,laravel要求mysql5.7以上版本,如目前目前使用mysql版本低于5.7可以修改配置使用

|---> 找到对应的数据库配置文件config/database.php->mysql
|     修改为: 'charset' => 'utf8', 'collation' => 'utf8_unicode_ci',
|
|---> 找到app目录下Providers/AppServiceProvider.php文件,在此文件的Boot方法内写一行代码也能实现完成数据迁移工作
|      Schema::defaultStringLength(191);这行代码作用是设置当前数据库默认字符长度,此处可能会报错,在上面添加类的use即可

4.注意nginx需要修改vhost配置文件,可去掉入口文件index.php

server {
        listen        80;
        server_name  weibo57.local.com;
        root   "K:/WWW/laravel/weibo57/public";
        location / {
            index index.php index.html;
            autoindex  off;
            # 去掉入口文件
			try_files $uri $uri/ /index.php?$query_string;
        }
        location ~ \.php(.*)$ {
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_split_path_info  ^((?U).+\.php)(/?.+)$;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            fastcgi_param  PATH_INFO  $fastcgi_path_info;
            fastcgi_param  PATH_TRANSLATED  $document_root$fastcgi_path_info;
            include        fastcgi_params;
        }
}

继续安装laravel-debugbar

composer require barryvdh/laravel-debugbar

同时修改配置文件

//修改项目目录下.env文件中的APP_DEBUG=true
APP_DEBUG=true
 类似资料: