【PHP-Laravel框架学习】在ubuntu上配置环境

来源:互联网 发布:杜兰特新秀体测数据 编辑:程序博客网 时间:2024/05/19 18:18

服务器环境ubuntu-server-14.04.4

查看系统环境是否满足以下条件

<?php phpinfo(); ?>

OR
命令行php -m 查看模块
对照一下
- PHP >= 5.5.9
- OpenSSL PHP Extension
- PDO PHP Extension
- Mbstring PHP Extension
- Tokenizer PHP Extension

局部安装composer

Installation

First, you need to download Composer into your project folder. Let’s create an empty folder for this purpose in our /var/www Apache web root folder called my_project:

cd /var/wwwmkdir projectcd project

Download Composer into this folder with the following command:

curl -sS https://getcomposer.org/installer | php
You should see a success message that looks something like this:

All settings correct for using ComposerDownloading...Composer successfully installed to: /var/www/my_project/composer.pharUse it: php composer.phar

Now if you check in the project folder, you’ll see that only one file has been downloaded: composer.phar - a PHP archive file that can be run from the command line.

更换composer镜像源

php composer.phar config -g repo.packagist composer https://packagist.phpcomposer.com

安装 Laravel 5.1 LTS

php composer.phar create-project laravel/laravel your-project-name --prefer-dist "5.1.*"

修改apache2 网站目录

根目录是public

sudo vim /etc/apache2/site-enabled/000-default.conf

重启apache

sudo /etc/init.d/apache2 start
sudo /etc/init.d/apache2 restart
sudo /etc/init.d/apache2 stop

访问localhost 出现“Laravel 5” 就OK了

假如发现报错
failed to open之类的
设置下777权限就好了

0 0
原创粉丝点击