黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

FuelPHP 安裝

fuelphp 安裝

 

本章介紹如何在您的機(jī)器上安裝 fuelphp 框架。 fuelphp 的安裝非常簡(jiǎn)單和容易。您有兩種方法可以創(chuàng)建 fuelphp 應(yīng)用程序:

  • 第一種方法是使用名為 oil 的 fuelphp 工具進(jìn)行命令行安裝。
  • 第二種方法是基于 composer 的安裝。 fuelphp 使用 composer 進(jìn)行安裝和包依賴,因此在繼續(xù)該過程之前,請(qǐng)確保 composer 已安裝在本地。

讓我們?cè)诤罄m(xù)部分中逐一詳細(xì)介紹每種方法。

 

系統(tǒng)要求

在開始安裝之前,必須滿足以下系統(tǒng)要求。

 

web 服務(wù)器(以下任一項(xiàng))

  • wamp (windows)
  • 微軟 iis (windows)
  • 燈 (linux)
  • mamp (macintosh)
  • xamp(多平臺(tái))
  • nginx(多平臺(tái))
  • php 內(nèi)置開發(fā)網(wǎng)絡(luò)服務(wù)器(多平臺(tái))

 

瀏覽器支持(以下任何一項(xiàng))

  • ie(internet explorer 8+)
  • 火狐
  • 谷歌瀏覽器
  • safari

php 兼容性-php 5.3 或更高版本。要獲得最大收益,請(qǐng)使用最新版本。

讓我們?cè)诒窘坛讨惺褂?php 的內(nèi)置開發(fā) web 服務(wù)器。內(nèi)置的開發(fā) web 服務(wù)器易于啟動(dòng),并且足以了解 fuelphp web 應(yīng)用程序的基礎(chǔ)知識(shí),而無需深入了解 web 服務(wù)器和配置領(lǐng)域的復(fù)雜性。

 

命令行安裝

fuelphp 的命令行安裝非常簡(jiǎn)單,最多需要五分鐘。

 

安裝油包

oil 是 fuelphp 框架提供的一個(gè)特殊包/命令,用于完成 fuelphp 應(yīng)用程序開發(fā)所需的許多任務(wù),包括安裝、開發(fā)和測(cè)試應(yīng)用程序。

要安裝 oil 包,打開一個(gè) shell 并運(yùn)行以下命令:

sudo curl https://get.fuelphp.com/oil | sh

該命令使用curl來下載安裝oil包。該命令將顯示類似以下信息的結(jié)果,最后安裝油包。

 % total    % received % xferd  average speed   time    time     time  current 
                                 dload  upload   total   spent    left  speed 
100   479  100   479    0     0    353      0  0:00:01  0:00:01--:--:--  353

 

創(chuàng)建新項(xiàng)目

要使用 oil 創(chuàng)建新項(xiàng)目,請(qǐng)使用以下命令:

oil create <project_name> </project_name>

讓我們使用以下命令創(chuàng)建一個(gè)名為"helloworld"的新項(xiàng)目。

oil create helloworld

現(xiàn)在,您可以看到類似于以下內(nèi)容的響應(yīng),并最終創(chuàng)建一個(gè)簡(jiǎn)單的 fuelphp 應(yīng)用程序框架。

composer create-project fuel/fuel helloworld 
installing fuel/fuel (1.8.0.1) 
  -installing fuel/fuel (1.8.0.1) 
      loading from cache  
created project in helloworld  
loading composer repositories with package information 
updating dependencies (including require-dev) 
  -installing composer/installers (v1.3.0) 
      loading from cache
  -installing fuelphp/upload (2.0.6) 
      loading from cache  
  -installing michelf/php-markdown (1.4.0) 
      loading from cache  
  -installing psr/log (1.0.2) 
      loading from cache  
  -installing monolog/monolog (1.18.2) 
      loading from cache  
  -installing phpseclib/phpseclib (2.0.0) 
      loading from cache  
  -installing fuel/core (1.8.0.4) 
      loading from cache  
  -installing fuel/auth (1.8.0.4) 
      loading from cache  
  -installing fuel/email (1.8.0.4) 
      loading from cache  
  -installing fuel/oil (1.8.0.4) 
      loading from cache  
  -installing fuel/orm (1.8.0.1) 
      loading from cache  
  -installing fuel/parser (1.8.0.4) 
      loading from cache  
  -installing fuel/docs (1.8.0.4) 
      loading from cache
   ……………. 
   …………….  
   writing lock file
   generating autoload files 

 

油版

要測(cè)試 oil 是否可用并檢查版本,請(qǐng)使用以下命令:

$ cd helloworld
$ php oil-v

上述命令產(chǎn)生以下結(jié)果:

fuel: 1.8 running in "development" mode

 

石油幫助命令

要獲取 oil 的基本幫助文檔,請(qǐng)使用以下命令:

$ php oil help

上面的命令將顯示類似于以下結(jié)果的幫助文檔:

usage: 
   php oil [cell|console|generate|package|refine|help|server|test]  
runtime options: 
  -f, [--force]    # overwrite files that already exist 
  -s, [--skip]     # skip files that already exist 
  -q, [--quiet]    # supress status output 
  -t, [--speak]    # speak errors in a robot voice  
description:   
   the 'oil' command can be used in several ways to facilitate quick development, help 
   with testing your application and for running tasks.  
environment: 
   if you want to specify a specific environment oil has to run in, overload the 
   environment variable on the commandline: fuel_env=staging php oil <commands> more information: 
   you can pass the parameter "help" to each of the defined command to get 
   information about that specific command: php oil package help  
documentation:   
   http://docs.fuelphp.com/packages/oil/intro.html    </commands>

到目前為止,您已經(jīng)知道如何使用油安裝 fuel。讓我們?cè)谙乱还?jié)中介紹基于 composer 的安裝。

 

基于 composer 的安裝

以下命令用于使用 composer 安裝 fuelphp。

$ composer create-project fuel/fuel--prefer-dist.

 

git 存儲(chǔ)庫(kù)克隆

要將最新的開發(fā)版本安裝為本地 git 存儲(chǔ)庫(kù)克隆,請(qǐng)使用以下命令。

$ composer create-project fuel/fuel:dev-1.9/develop--prefer-source.

 

運(yùn)行應(yīng)用程序

移動(dòng)到項(xiàng)目目錄 public 文件夾,使用以下命令使用生產(chǎn)服務(wù)器運(yùn)行應(yīng)用程序。

$ cd path/to/helloworld/public
$ php-s localhost:8080 index.php

它產(chǎn)生以下響應(yīng)。

php 5.5.31 development server started at sun may 21 12:26:10 2017
listening on http://localhost:8080
document root is /users/workspace/php-fuel/helloworld/public
press ctrl-c to quit.

現(xiàn)在,請(qǐng)求 url, http://localhost:8080,它將產(chǎn)生以下結(jié)果。

 

結(jié)果

這是在開發(fā)環(huán)境中運(yùn)行 fuelphp 應(yīng)用程序的最簡(jiǎn)單方法。如果您在生產(chǎn)環(huán)境中以這種方式創(chuàng)建應(yīng)用程序,您將面臨安全問題。推薦的方法是設(shè)置虛擬主機(jī)配置。下一節(jié)將介紹 apache 網(wǎng)絡(luò)服務(wù)器。

 

設(shè)置虛擬主機(jī)

這是訪問 fuelphp 應(yīng)用程序的更安全的方式。要設(shè)置虛擬主機(jī),您需要將 apache 虛擬主機(jī)文件鏈接到您的應(yīng)用程序。如果是內(nèi)網(wǎng)應(yīng)用,將系統(tǒng)主機(jī)文件 url 重定向到虛擬主機(jī)。

 

虛擬主機(jī)文件

打開虛擬主機(jī)并添加以下更改。

<virtualhost *:80=""> 
   servername hello.app 
   documentroot /path/to/public 
   setenv fuel_env “development”
   
   <directory path="" to="" public=""> 
      directoryindex index.php 
      allowoverride all 
      order allow,deny 
      allow from all 
   </directory> </virtualhost> 

 

系統(tǒng)主機(jī)文件

現(xiàn)在,使用以下命令向您的計(jì)算機(jī)添加主機(jī)條目。

sudo vi /etc/hosts

然后,將以下行添加到文件末尾。

127.0.0.1 hello.app

要使所有更改可用,請(qǐng)重新啟動(dòng) apache 服務(wù)器并請(qǐng)求 url, http://hello.app。它生成 fuelphp 主頁(yè)。

下一節(jié):fuelphp 架構(gòu)概述

fuelphp 教程

相關(guān)文章