Laravel4安装配置的方法

如果我们需要安培Laravel4的话最php最低要求要在php5.3.7版本并且我们需要把mcrypt与openss这两个扩展开启才可以,具体步骤我们参考下文.

前面我们介绍了composer安装,这里我们接着来介绍 Laravel框架的安装,这里我们安装的是laravel 4,项目下载地址:https://github.com/laravel/laravel.

安装要求:

1、PHP最低版本:5.3.7

2、支持 mcrypt 扩展

3、支持 openssl 扩展

另外,需要支持 proc_open、proc_get_status函数,自己在安装过程中,因为不支持这2个函数,安装报错失败了,代码如下:

  1. [Symfony\Component\Process\Exception\RuntimeException]
  2. The Process class relies on proc_open, which is not available on your PHP installation.
  3. [ErrorException]
  4. proc_get_status() has been disabled for security reasons

可以通过php配置文件中的disable_functions查看是否支持这2个函数,进入正题,Laravel安装方法:

1、下载安装包,解压

2、进入解压目录,执行命令

composer install 安装过程中会下载一些框架核心包,慢慢等待即可,安装完成后通过URL地址访问,这里需要提醒一下,要把域名解析到public目录,才可以正常访问,代码如下:

  1. listen 80;
  2. server_name www.phpfensi.com;
  3. index index.html index.htm index.php default.html default.htm default.php;
  4. root /home/wwwroot/www.laravel.com/public;

一开始时自己把域名解析到 /home/wwwroot/www.phpfensi.com 目录,通过域名范围后报404错误,不加--prefer-dist的话安装下来有100多M.

composer create-project laravel/laravel.--prefer-dist