我開始用mac環境時,感覺很無助,因為之前都是用Windows,我只會一些Mac的簡單指令,進入公司的第一天就要設定Mac環境,我上網查了很多Mac安裝環境的文章,但是沒有安裝成功,可能那些對小白來說寫的不夠全面。下面我整理了一份安裝PHP環境的筆記供小白參考,如果小白不知道怎麼安裝的,就照我筆記的步驟一步一步操作就好。
一、安裝必要的軟體
1. 安裝MacPorts需要先安裝X11和Xcode,(Lion系統已經預設安裝好了X11),在Appstore安裝Xcode即可。
下載完Xcode之後,一般路徑在/Application下,可以先將其拷出來,以備後續使用:
$ cp -a /Application/Xcode.app ~/soft2.
二、安裝MacPort
1.下載網址:https://distfiles.macports.org/MacPorts/
MacPort手動下載網址: https://www.macports.org/install.php
##可以直接下載Lion下的最新版本:https://distfiles.macports.org/MacPorts/MacPorts-2.4.2-10.12-Sierra.pkg
#如果MacPort出現新版本,可以直接透過以下指令進行更新:$ sudo port -v selfupdate
新增MacPort到環境變數sudo vim /etc/profile
export PATH=/opt/local/bin:$PATH export PATH=/opt/local/sbin:$PATH
2. 錯誤解決方法, 1)設定xcode-select的路徑,2)安裝命令列工具:
$ sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer
三、Apache安裝設定
1.port 安裝apache:
$ sudo port install apache2 cd /opt/local/etc/apache2/ sudo vim httpd.conf LoadModule rewrite_module lib/apache2/modules/mod_rewrite.so
四、PHP安裝設定
1. port 安裝PHP環境,我安裝PHP 5.6.40的版本
$ sudo port install php56-apache2handler## 安裝完載,以下提示
cd /opt/local/lib/apache2/modules sudo /opt/local/bin/apxs -a -e -n php5 mod_php56.so2.把php 模組加入apache,就是上面提示的,執行一下上面提示的指令。
$ cd /opt/local/lib/apache2/modules $ sudo /opt/local/bin/apxs -a -e -n php5 mod_php56.so如果使用的PHP版本多,想切換PHP版本和apache掛載(以下操作不建議小白用,可以忽略)[注意:httpd.conf手動將PHP模組和apache掛載:
LoadModule php5_module lib/apache2/modules/mod_php56.so #注释打开3.安裝php擴充功能,按著需要選取擴充功能
$ sudo port install php56-mbstring $ sudo port install php56-ftp $ sudo port install php56-iconv $ sudo port install php56-openssl $ sudo port install php56-mcrypt $ sudo port install php56-soap $ sudo port install php56-sqlite $ sudo port install php56-xsl $ sudo port install php56-zip $ sudo port install php56-xdebug $ sudo port install php56-mongo $ sudo port install php56-mysql $ sudo port install php56-oracle $ sudo port install php56-postgresql (php56-mbstring,php56-ftp,php56-iconv,php56-openssl,php56-mcrypt ,php56-soap ,php56-sqlite, php56-xsl ,php56-zip,php56-xdebug,php56-mongo,php56-mysql,php56-oracle,php56-postgresql)安裝php56-oracle 擴充功能時要注意port自動安裝時basic和sdk下載不到,需要手動下載並放到對應路徑下:可根據安裝$ sudo port install php56-oracle時提示的log尋找對應的路徑
/opt/local/var/macports/distfiles/oracle-instantclient下面這個網址手動下載oracle 的basic和sdk
https://www.oracle.com/technetwork/topics/intel-macsoft-096467.html我下載的是以下版本
instantclient-basic-macos.x64-11.2.0.4.0.zip instantclient-sdk-macos.x64-11.2.0.4.0.zip把下載好的壓縮包放到以下路徑下
cp instantclient-sdk-macos.x64-11.2.0.4.0.zip /opt/local/var/macports/distfiles/oracle-instantclient4. 編輯httpd.conf這個檔案
#
$ sudo vim /opt/local/etc/apache2/httpd.conf119行新增以下程式碼
AddType application/x-httpd-php .php AddType application/x-httpd-php-source .phps或
<FilesMatch .php$> SetHandler application/x-httpd-php </FilesMatch>5.開啟虛擬目錄,編輯httpd.conf這個檔案
sudo vim /opt/local/etc/apache2/httpd.conf Include conf/extra/httpd-vhosts.conf #把这个注释去掉6.編輯httpd.conf這個文件,修改為:
<Directory /> Options FollowSymLinks AllowOverride none Order deny,allow Allow from all Satisfy all #Require all denied </Directory> AllowOverride All Options None Options FollowSymLinks Require all granted7.編輯httpd.conf這個文件,把
ServerName www.localhost.com:80這行程式碼改成
ServerName localhost:80
cd /opt/local/etc/php56 sudo cp php.ini-production php.ini以上步驟是我安裝過且成功的,按照上面步驟一步步安裝就好,如果哪有不懂可以留言。謝謝。 大家支持。希望能為小白提供幫助。
以上是MAC環境安裝php、apache、MacPorts等環境配置的詳細內容。更多資訊請關注PHP中文網其他相關文章!