ThinkPHP5安装

ThinkPHP 是一款开源的 PHP 框架

问题描述

  • 安装时查看《ThinkPHP5.0 完全开发手册》-> 基础 -> 安装 ThinkPHP
  • 采用 Git 安装
    https://github.com/top-think/think
    https://github.com/top-think/framework
  • 执行下载完所有文件之后启动服务器,访问http://localhost/tp5/public/
  • 很显然下载的文件中没有 tp5 的文件夹
  • 此时只需将下载的项目文件夹改为 tp5 就行了
  • 默认读取 public 目录下的 index.php 文件
  • 但是将得到两条错误信息,大致意思是说 public/index.php 文件的第 17 行有错误,并且提示缺少文件
  • 仔细打开文件查看是require __DIR__ . '/../thinkphp/start.php';这行代码
  • 显而易见,下载的项目中并没有这个 thinkphp 在这个文件夹
  • 于是查看 GitHub 上的 README.md 文件,文件说明上标明了有这个文件夹
  • 经过查找,在简书上看到一篇文章,解决了这个问题

解决方法

  • 在之前我将项目目录改成了 tp5
  • 之后将 framework 文件夹重命名为 thinkphp
  • 再次访问http://localhost/tp5/public/,问题已解决
  • 其实最简单的方法就是在 git clone 的时候重命名文件夹了
Bash
1
2
git clone https://github.com/top-think/think tp5
git clone https://github.com/top-think/framework thinkphp

评论

Your browser is out-of-date!

Update your browser to view this website correctly.&npsb;Update my browser now

×