安装VueThink中遇到的问题及解决方法

1.配置好host后启动后台管理,会出现数据库连接错误

解决:需要将内置的php/install.sql进行数据的导入,修改config/database.php用户名和密码即可

2.启动Vue时遇到Error: Cannot find module 'semver' 

解决:需要先进入frontEnd中在命令行执行npm install安装即可

3.npm run dev启动项目时会遇到Error: listen EACCES: permission denied 0.0.0.0:8080

解决:在frontEnd/config/index.js的dev模块中修改端口号

4.npm run dev的时候遇到报错 Expected linebreaks to be 'CRLF' but found 'LF'  linebreak-style

解决:需要在根目录.eslintrc文件 rules 属性,将linebreak-style”属性设为[0,”error”, “windows”]

5.PHP地址跳转是出现 No input file specified

解决:需要修改public目录下.htaccess 将 RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]修改为 RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]即可

 

 

你可能感兴趣的:(安装VueThink中遇到的问题及解决方法)