青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

隨筆 - 298  文章 - 377  trackbacks - 0
<2016年4月>
272829303112
3456789
10111213141516
17181920212223
24252627282930
1234567

常用鏈接

留言簿(34)

隨筆分類

隨筆檔案

文章檔案

相冊

收藏夾

搜索

  •  

最新評論

閱讀排行榜

評論排行榜

Last login: Wed Jun  8 08:58:45 on console

MACdeiMac:~ niewenlong$ brew install php53 --with-imap --with-tidy --with-debug --with-pgsql --with-mysql --with-fpm --with-libmysql --with-gmp

==> Installing php53 from josegonzalez/php

Warning: josegonzalez/php/php53: --with-pgsql was deprecated; using --with-postgresql instead!

==> Downloading https://php.net/get/php-5.3.29.tar.bz2/from/this/mirror

Already downloaded: /Users/niewenlong/Library/Caches/Homebrew/php53-5.3.29

==> Downloading https://gist.githubusercontent.com/javian/bfcbd5bc5874ee9c539fb3d642cdce3e/raw/bf079cc68ec76290f02f57981ae85b20a06dd428/multi-sapi-5.3.2

######################################################################## 100.0%

==> Patching

==> Applying multi-sapi-5.3.29-homebrew.patch

patching file Makefile.global

patching file Zend/acinclude.m4

patching file Zend/zend_language_parser.y

patching file acinclude.m4

patching file aclocal.m4

patching file configure

patching file configure.in

patching file generated_lists

patching file main/php_config.h.in

patching file sapi/cgi/Makefile.frag

patching file sapi/cgi/config9.m4

patching file sapi/cli/Makefile.frag

patching file sapi/cli/config.m4

patching file sapi/fpm/Makefile.frag

patching file sapi/fpm/config.m4

patching file sapi/litespeed/Makefile.frag

patching file sapi/litespeed/config.m4

patching file sapi/milter/Makefile.frag

patching file sapi/milter/config.m4

==> ./configure --prefix=/usr/local/Cellar/php53/5.3.29_4 --localstatedir=/usr/local/var --sysconfdir=/usr/local/etc/php/5.3 --with-config-file-path=/us

==> make

==> make install

==> Caveats

To enable PHP in Apache add the following to httpd.conf and restart Apache:

    LoadModule php5_module    /usr/local/opt/php53/libexec/apache2/libphp5.so


The php.ini file can be found in:

    /usr/local/etc/php/5.3/php.ini


???? Extensions ????


If you are having issues with custom extension compiling, ensure that

you are using the brew version, by placing /usr/local/bin before /usr/sbin in your PATH:


      PATH="/usr/local/bin:$PATH"


PHP53 Extensions will always be compiled against this PHP. Please install them

using --without-homebrew-php to enable compiling against system PHP.


???? PHP CLI ????


If you wish to swap the PHP you use on the command line, you should add the following to ~/.bashrc,

~/.zshrc, ~/.profile or your shell's equivalent configuration file:


      export PATH="$(brew --prefix homebrew/php/php53)/bin:$PATH"


GMP has moved to its own formula, please install it by running: brew install php53-gmp


???? FPM ????


To launch php-fpm on startup:

    mkdir -p ~/Library/LaunchAgents

    cp /usr/local/opt/php53/homebrew.mxcl.php53.plist ~/Library/LaunchAgents/

    launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.php53.plist


The control script is located at /usr/local/opt/php53/sbin/php53-fpm


OS X 10.8 and newer come with php-fpm pre-installed, to ensure you are using the brew version you need to make sure /usr/local/sbin is before /usr/sbin in your PATH:


  PATH="/usr/local/sbin:$PATH"


You may also need to edit the plist to use the correct "UserName".


Please note that the plist was called 'homebrew-php.josegonzalez.php53.plist' in old versions

of this formula.


To have launchd start josegonzalez/php/php53 now and restart at login:

  brew services start josegonzalez/php/php53

==> Summary

??  /usr/local/Cellar/php53/5.3.29_4: 299 files, 49.9M, built in 3 minutes 15 seconds

MACdeiMac:~ niewenlong$ 

@import url(http://m.shnenglu.com/CuteSoft_Client/CuteEditor/Load.ashx?type=style&file=SyntaxHighlighter.css);@import url(/css/cuteeditor.css);
posted on 2016-06-08 09:07 聶文龍 閱讀(1183) 評論(4)  編輯 收藏 引用

FeedBack:
# re: MAC brew install PHP5.3 2016-06-08 09:48 聶文龍
Mac OS使用brew安裝Nginx、MySQL、PHP-FPM的LAMP開發環境

2014-05-28
準備工作

新版的 Mac OS 內置了Apache 和 PHP,我的系統版本是OS X 10.9.3,可以通過以下命令查看Apache和PHP的版本號:

httpd -v

Server version: Apache/2.2.26 (Unix)
Server built: Dec 10 2013 22:09:38

php --version

PHP 5.4.24 (cli) (built: Jan 19 2014 21:32:15)
Copyright (c) 1997-2013 The PHP Group
Zend Engine v2.4.0, Copyright (c) 1998-2013 Zend Technologies
因為我們要自己動手來安裝 Nginx,因此首先來關閉系統自帶的apache:

sudo apachectl stop #關閉apache,如果事先沒開啟過,可以忽略報錯信息
如果你的apache已經加入了launchctl,使用下面的命令來關閉:

sudo launchctl unload -w /System/Library/LaunchDaemons/org.apache.httpd.plist
為什么選擇關閉apache?因為mac os x系統自帶的apache是沒有優雅的remove/uninstall 的方式的… 對于“潔癖”比較嚴重的童鞋,可以選擇直接刪除相關的文件!(千萬不要手抖刪錯目錄…)

sudo rm /usr/sbin/apachectl
sudo rm /usr/sbin/httpd
sudo rm -r /etc/apache2/
刪除自帶的php

sudo rm -r /usr/bin/php
如果沒有安裝brew,可以按照官網的步驟安裝

http://brew.sh/
nginx的安裝與配置

安裝nginx

brew install nginx
修改配置文件

sudo vim /usr/local/etc/nginx/nginx.conf
#修改默認的8080端口為80
給予管理員權限

sudo chown root:wheel/usr/local/opt/nginx/bin/nginx
sudo chmod u+s/usr/local/opt/nginx/bin/nginx
加入launchctl啟動控制

mkdir -p ~/Library/LaunchAgents
cp /usr/local/opt/nginx/homebrew.mxcl.nginx.plist ~/Library/LaunchAgents/
launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.nginx.plist
運行nginx

sudo nginx #打開 nginx
nginx -s reload|reopen|stop|quit #重新加載配置|重啟|停止|退出 nginx
nginx -t #測試配置是否有語法錯誤
用法詳解

nginx [-?hvVtq] [-s signal] [-c filename] [-p prefix] [-g directives]
選項列表

-?,-h : 打開幫助信息
-v : 顯示版本信息并退出
-V : 顯示版本和配置選項信息,然后退出
-t : 檢測配置文件是否有語法錯誤,然后退出
-q : 在檢測配置文件期間屏蔽非錯誤信息
-s signal : 給一個 nginx 主進程發送信號:stop(停止), quit(退出), reopen(重啟), reload(重新加載配置文件)
-p prefix : 設置前綴路徑(默認是:/usr/local/Cellar/nginx/1.2.6/)
-c filename : 設置配置文件(默認是:/usr/local/etc/nginx/nginx.conf)
-g directives : 設置配置文件外的全局指令
mysql的安裝與配置

安裝mysql

brew install mysql
cd /usr/local/opt/mysql/
修改配置文件

sudo vim my.cnf
#如果出現無法啟動mysql,rm my.cnf
加入launchctl啟動控制

mkdir -p ~/Library/LaunchAgents/
cp /usr/local/opt/mysql/homebrew.mxcl.mysql.plist ~/Library/LaunchAgents/
launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist
#取消啟動
#launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist
初始化 mysql

./bin/mysql_install_db
執行安全設置腳本,設置root賬號密碼

./bin/mysql_secure_installation
命令行連接mysql

mysql -uroot -p
php的安裝與配置

brew 默認沒有 php 安裝包:

brew tap homebrew/dupes
brew tap josegonzalez/homebrew-php
現在可以安裝php了:

brew install php54 --with-imap --with-tidy --with-debug --with-mysql --with-fpm
將php路徑加入PATH

sudo vim ~/.bash_profile
export PATH="$(brew --prefix php54)/bin:$PATH"

source ~/.bash_profile
加入launchctl啟動控制

mkdir -p ~/Library/LaunchAgents
cp /usr/local/opt/php54/homebrew.mxcl.php54.plist ~/Library/LaunchAgents/
launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.php54.plist
配置路徑

/usr/local/etc/php/5.4/php.ini
/usr/local/etc/php/5.4/php-fpm.conf
配置 Nginx 支持 PHP-FPM

sudo vim /usr/local/etc/nginx/nginx.conf

# 添加默認首頁 php
index index.php index.html index.htm;

# 取消以下內容的注釋,并做修改
location ~ \.php$ {
fastcgi_intercept_errors on;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /usr/local/Cellar/nginx/1.6.0_1/html$fastcgi_script_name;
include /usr/local/etc/nginx/fastcgi_params;
}
測試環境

sudo vim /usr/local/Cellar/nginx/1.6.0_1/html/index.php

#添加測試代碼
<?php
phpinfo();
結語

到目前為止,我們的Nginx、MySQL、PHP-FPM三大軟件已經安裝好了,針對不同的系統版本和軟件版本,可能會遇到一些問題,歡迎留言探討。

原文鏈接:http://tabalt.net/blog/install-nginx-mysql-php-fpm-by-brew-on-mac/
本博文章如無說明均為原創,轉載時請注明以上鏈接  回復  更多評論
  
# re: MAC brew install PHP5.3 2016-06-11 20:40 聶文龍
bash-3.2# brew install mysql
==> Downloading https://homebrew.bintray.com/bottles/mysql-5.7.13.el_capitan.bottle.tar.gz
######################################################################## 100.0%
==> Pouring mysql-5.7.13.el_capitan.bottle.tar.gz
==> /usr/local/Cellar/mysql/5.7.13/bin/mysqld --initialize-insecure --user=root --basedir=/usr/local/Cellar/mysql/5.7.13 --datadir=/usr/local/var/mysql --t
==> Caveats
We've installed your MySQL database without a root password. To secure it run:
mysql_secure_installation

To connect run:
mysql -uroot

A "/etc/my.cnf" from another install may interfere with a Homebrew-built
server starting up correctly.

To have launchd start mysql now and restart at login:
brew services start mysql
Or, if you don't want/need a background service you can just run:
mysql.server start
==> Summary
?? /usr/local/Cellar/mysql/5.7.13: 13,344 files, 445.0M
bash-3.2#   回復  更多評論
  
# re: MAC brew install PHP5.3 2016-06-11 20:59 聶文龍
bash-3.2# brew install php53 --with-imap --with-tidy --with-debug --with-mysql --with-fpm --with-libmysql --with-gmp
==> Installing php53 from homebrew/php
==> Downloading https://php.net/get/php-5.3.29.tar.bz2/from/this/mirror
Already downloaded: /Users/niewenlong/Library/Caches/Homebrew/php53-5.3.29
==> Downloading https://gist.githubusercontent.com/javian/bfcbd5bc5874ee9c539fb3d642cdce3e/raw/bf079cc68ec76290f02f57981ae85b20a06dd428/multi-sapi-5.3.29-h
Already downloaded: /Users/niewenlong/Library/Caches/Homebrew/php53--patch-3c3157bc5c4346108a398798b84dbbaa13409c43d3996bea2ddacb3277e0cee2.patch
==> Patching
==> Applying multi-sapi-5.3.29-homebrew.patch
patching file Makefile.global
patching file Zend/acinclude.m4
patching file Zend/zend_language_parser.y
patching file acinclude.m4
patching file aclocal.m4
patching file configure
patching file configure.in
patching file generated_lists
patching file main/php_config.h.in
patching file sapi/cgi/Makefile.frag
patching file sapi/cgi/config9.m4
patching file sapi/cli/Makefile.frag
patching file sapi/cli/config.m4
patching file sapi/fpm/Makefile.frag
patching file sapi/fpm/config.m4
patching file sapi/litespeed/Makefile.frag
patching file sapi/litespeed/config.m4
patching file sapi/milter/Makefile.frag
patching file sapi/milter/config.m4
==> ./configure --prefix=/usr/local/Cellar/php53/5.3.29_4 --localstatedir=/usr/local/var --sysconfdir=/usr/local/etc/php/5.3 --with-config-file-path=/usr/l
==> make
==> make install
==> Caveats
To enable PHP in Apache add the following to httpd.conf and restart Apache:
LoadModule php5_module /usr/local/opt/php53/libexec/apache2/libphp5.so

The php.ini file can be found in:
/usr/local/etc/php/5.3/php.ini

???? Extensions ????

If you are having issues with custom extension compiling, ensure that
you are using the brew version, by placing /usr/local/bin before /usr/sbin in your PATH:

PATH="/usr/local/bin:$PATH"

PHP53 Extensions will always be compiled against this PHP. Please install them
using --without-homebrew-php to enable compiling against system PHP.

???? PHP CLI ????

If you wish to swap the PHP you use on the command line, you should add the following to ~/.bashrc,
~/.zshrc, ~/.profile or your shell's equivalent configuration file:

export PATH="$(brew --prefix homebrew/php/php53)/bin:$PATH"

GMP has moved to its own formula, please install it by running: brew install php53-gmp

???? FPM ????

To launch php-fpm on startup:
mkdir -p ~/Library/LaunchAgents
cp /usr/local/opt/php53/homebrew.mxcl.php53.plist ~/Library/LaunchAgents/
launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.php53.plist

The control script is located at /usr/local/opt/php53/sbin/php53-fpm

OS X 10.8 and newer come with php-fpm pre-installed, to ensure you are using the brew version you need to make sure /usr/local/sbin is before /usr/sbin in your PATH:

PATH="/usr/local/sbin:$PATH"

You may also need to edit the plist to use the correct "UserName".

Please note that the plist was called 'homebrew-php.josegonzalez.php53.plist' in old versions
of this formula.

To have launchd start homebrew/php/php53 now and restart at login:
brew services start homebrew/php/php53
==> Summary
?? /usr/local/Cellar/php53/5.3.29_4: 299 files, 49.5M, built in 2 minutes 56 seconds
bash-3.2#
  回復  更多評論
  
# re: MAC brew install PHP5.3 2016-06-11 23:36 聶文龍

bash-3.2# brew install php53-apcu php53-gearman php53-geoip php53-gmagick php53-imagick php53-intl php53-mcrypt php53-memcache php53-memcached php53-mongo php53-opcache php53-phalcon php53-redis php53-sphinx php53-swoole php53-uuid php53-xdebug;
==> Installing php53-apcu from homebrew/php
==> Downloading https://homebrew.bintray.com/bottles-php/php53-apcu-4.0.8.el_capitan.bottle.tar.gz
######################################################################## 100.0%
==> Pouring php53-apcu-4.0.8.el_capitan.bottle.tar.gz
==> Caveats
To finish installing apcu for PHP 5.3:
* /usr/local/etc/php/5.3/conf.d/ext-apcu.ini was created,
do not forget to remove it upon extension removal.
* Validate installation via one of the following methods:
*
* Using PHP from a webserver:
* - Restart your webserver.
* - Write a PHP page that calls "phpinfo();"
* - Load it in a browser and look for the info on the apcu module.
* - If you see it, you have been successful!
*
* Using PHP from the command line:
* - Run `php -i "(command-line 'phpinfo()')"`
* - Look for the info on the apcu module.
* - If you see it, you have been successful!
==> Summary
?? /usr/local/Cellar/php53-apcu/4.0.8: 6 files, 94.5K
==> Installing php53-gearman from homebrew/php
==> Installing dependencies for homebrew/php/php53-gearman: boost, gearman
==> Installing homebrew/php/php53-gearman dependency: boost
==> Downloading https://homebrew.bintray.com/bottles/boost-1.60.0_2.el_capitan.bottle.1.tar.gz
######################################################################## 100.0%
==> Pouring boost-1.60.0_2.el_capitan.bottle.1.tar.gz
?? /usr/local/Cellar/boost/1.60.0_2: 11,139 files, 434.0M
==> Installing homebrew/php/php53-gearman dependency: gearman
==> Downloading https://homebrew.bintray.com/bottles/gearman-1.1.12.el_capitan.bottle.2.tar.gz
######################################################################## 100.0%
==> Pouring gearman-1.1.12.el_capitan.bottle.2.tar.gz
==> Caveats
To have launchd start gearman now and restart at login:
brew services start gearman
Or, if you don't want/need a background service you can just run:
gearmand -d
==> Summary
?? /usr/local/Cellar/gearman/1.1.12: 210 files, 1.7M
==> Installing homebrew/php/php53-gearman
==> Downloading https://homebrew.bintray.com/bottles-php/php53-gearman-1.1.2.el_capitan.bottle.1.tar.gz
######################################################################## 100.0%
==> Pouring php53-gearman-1.1.2.el_capitan.bottle.1.tar.gz
==> Caveats
To finish installing gearman for PHP 5.3:
* /usr/local/etc/php/5.3/conf.d/ext-gearman.ini was created,
do not forget to remove it upon extension removal.
* Validate installation via one of the following methods:
*
* Using PHP from a webserver:
* - Restart your webserver.
* - Write a PHP page that calls "phpinfo();"
* - Load it in a browser and look for the info on the gearman module.
* - If you see it, you have been successful!
*
* Using PHP from the command line:
* - Run `php -i "(command-line 'phpinfo()')"`
* - Look for the info on the gearman module.
* - If you see it, you have been successful!
==> Summary
?? /usr/local/Cellar/php53-gearman/1.1.2: 5 files, 117.5K
==> Installing php53-geoip from homebrew/php
==> Installing dependencies for homebrew/php/php53-geoip: geoip
==> Installing homebrew/php/php53-geoip dependency: geoip
==> Downloading https://homebrew.bintray.com/bottles/geoip-1.6.9.el_capitan.bottle.tar.gz
######################################################################## 100.0%
==> Pouring geoip-1.6.9.el_capitan.bottle.tar.gz
?? /usr/local/Cellar/geoip/1.6.9: 17 files, 553.2K
==> Installing homebrew/php/php53-geoip
==> Downloading https://homebrew.bintray.com/bottles-php/php53-geoip-1.1.0.el_capitan.bottle.1.tar.gz
######################################################################## 100.0%
==> Pouring php53-geoip-1.1.0.el_capitan.bottle.1.tar.gz
==> Caveats
To finish installing geoip for PHP 5.3:
* /usr/local/etc/php/5.3/conf.d/ext-geoip.ini was created,
do not forget to remove it upon extension removal.
* Validate installation via one of the following methods:
*
* Using PHP from a webserver:
* - Restart your webserver.
* - Write a PHP page that calls "phpinfo();"
* - Load it in a browser and look for the info on the geoip module.
* - If you see it, you have been successful!
*
* Using PHP from the command line:
* - Run `php -i "(command-line 'phpinfo()')"`
* - Look for the info on the geoip module.
* - If you see it, you have been successful!
==> Summary
?? /usr/local/Cellar/php53-geoip/1.1.0: 5 files, 29.6K
==> Installing php53-gmagick from homebrew/php
==> Installing dependencies for homebrew/php/php53-gmagick: libtool, libtiff, graphicsmagick
==> Installing homebrew/php/php53-gmagick dependency: libtool
==> Downloading https://homebrew.bintray.com/bottles/libtool-2.4.6.el_capitan.bottle.tar.gz
######################################################################## 100.0%
==> Pouring libtool-2.4.6.el_capitan.bottle.tar.gz
==> Caveats
In order to prevent conflicts with Apple's own libtool we have prepended a "g"
so, you have instead: glibtool and glibtoolize.
==> Summary
?? /usr/local/Cellar/libtool/2.4.6: 70 files, 3.7M
==> Installing homebrew/php/php53-gmagick dependency: libtiff
==> Downloading https://homebrew.bintray.com/bottles/libtiff-4.0.6_1.el_capitan.bottle.tar.gz
######################################################################## 100.0%
==> Pouring libtiff-4.0.6_1.el_capitan.bottle.tar.gz
?? /usr/local/Cellar/libtiff/4.0.6_1: 261 files, 3.4M
==> Installing homebrew/php/php53-gmagick dependency: graphicsmagick
==> Downloading https://homebrew.bintray.com/bottles/graphicsmagick-1.3.24.el_capitan.bottle.tar.gz
######################################################################## 100.0%
==> Pouring graphicsmagick-1.3.24.el_capitan.bottle.tar.gz
?? /usr/local/Cellar/graphicsmagick/1.3.24: 475 files, 11.9M
==> Installing homebrew/php/php53-gmagick
==> Downloading https://homebrew.bintray.com/bottles-php/php53-gmagick-1.1.7RC2.el_capitan.bottle.1.tar.gz
######################################################################## 100.0%
==> Pouring php53-gmagick-1.1.7RC2.el_capitan.bottle.1.tar.gz
==> Caveats
To finish installing gmagick for PHP 5.3:
* /usr/local/etc/php/5.3/conf.d/ext-gmagick.ini was created,
do not forget to remove it upon extension removal.
* Validate installation via one of the following methods:
*
* Using PHP from a webserver:
* - Restart your webserver.
* - Write a PHP page that calls "phpinfo();"
* - Load it in a browser and look for the info on the gmagick module.
* - If you see it, you have been successful!
*
* Using PHP from the command line:
* - Run `php -i "(command-line 'phpinfo()')"`
* - Look for the info on the gmagick module.
* - If you see it, you have been successful!
==> Summary
?? /usr/local/Cellar/php53-gmagick/1.1.7RC2: 4 files, 167.2K
==> Installing php53-imagick from homebrew/php
==> Installing dependencies for homebrew/php/php53-imagick: xz, imagemagick
==> Installing homebrew/php/php53-imagick dependency: xz
==> Downloading https://homebrew.bintray.com/bottles/xz-5.2.2.el_capitan.bottle.tar.gz
######################################################################## 100.0%
==> Pouring xz-5.2.2.el_capitan.bottle.tar.gz
?? /usr/local/Cellar/xz/5.2.2: 91 files, 1.4M
==> Installing homebrew/php/php53-imagick dependency: imagemagick
==> Downloading https://homebrew.bintray.com/bottles/imagemagick-6.9.4-7.el_capitan.bottle.1.tar.gz
######################################################################## 100.0%
==> Pouring imagemagick-6.9.4-7.el_capitan.bottle.1.tar.gz
?? /usr/local/Cellar/imagemagick/6.9.4-7: 1,460 files, 17.9M
==> Installing homebrew/php/php53-imagick
==> Downloading https://homebrew.bintray.com/bottles-php/php53-imagick-3.3.0_2.el_capitan.bottle.tar.gz
######################################################################## 100.0%
==> Pouring php53-imagick-3.3.0_2.el_capitan.bottle.tar.gz
==> Caveats
To finish installing imagick for PHP 5.3:
* /usr/local/etc/php/5.3/conf.d/ext-imagick.ini was created,
do not forget to remove it upon extension removal.
* Validate installation via one of the following methods:
*
* Using PHP from a webserver:
* - Restart your webserver.
* - Write a PHP page that calls "phpinfo();"
* - Load it in a browser and look for the info on the imagick module.
* - If you see it, you have been successful!
*
* Using PHP from the command line:
* - Run `php -i "(command-line 'phpinfo()')"`
* - Look for the info on the imagick module.
* - If you see it, you have been successful!
==> Summary
?? /usr/local/Cellar/php53-imagick/3.3.0_2: 2 files, 326.9K
==> Installing php53-intl from homebrew/php
==> Downloading https://homebrew.bintray.com/bottles-php/php53-intl-5.3.29_1.el_capitan.bottle.tar.gz
######################################################################## 100.0%
==> Pouring php53-intl-5.3.29_1.el_capitan.bottle.tar.gz
==> Caveats
To finish installing intl for PHP 5.3:
* /usr/local/etc/php/5.3/conf.d/ext-intl.ini was created,
do not forget to remove it upon extension removal.
* Validate installation via one of the following methods:
*
* Using PHP from a webserver:
* - Restart your webserver.
* - Write a PHP page that calls "phpinfo();"
* - Load it in a browser and look for the info on the intl module.
* - If you see it, you have been successful!
*
* Using PHP from the command line:
* - Run `php -i "(command-line 'phpinfo()')"`
* - Look for the info on the intl module.
* - If you see it, you have been successful!
==> Summary
?? /usr/local/Cellar/php53-intl/5.3.29_1: 5 files, 517.5K
==> Installing php53-mcrypt from homebrew/php
==> Installing dependencies for homebrew/php/php53-mcrypt: mhash, mcrypt
==> Installing homebrew/php/php53-mcrypt dependency: mhash
==> Downloading https://homebrew.bintray.com/bottles/mhash-0.9.9.9.el_capitan.bottle.tar.gz
######################################################################## 100.0%
==> Pouring mhash-0.9.9.9.el_capitan.bottle.tar.gz
?? /usr/local/Cellar/mhash/0.9.9.9: 19 files, 452.8K
==> Installing homebrew/php/php53-mcrypt dependency: mcrypt
==> Downloading https://homebrew.bintray.com/bottles/mcrypt-2.6.8.el_capitan.bottle.1.tar.gz
######################################################################## 100.0%
==> Pouring mcrypt-2.6.8.el_capitan.bottle.1.tar.gz
?? /usr/local/Cellar/mcrypt/2.6.8: 18 files, 396.3K
==> Installing homebrew/php/php53-mcrypt
==> Downloading https://homebrew.bintray.com/bottles-php/php53-mcrypt-5.3.29.el_capitan.bottle.tar.gz
######################################################################## 100.0%
==> Pouring php53-mcrypt-5.3.29.el_capitan.bottle.tar.gz
==> Caveats
To finish installing mcrypt for PHP 5.3:
* /usr/local/etc/php/5.3/conf.d/ext-mcrypt.ini was created,
do not forget to remove it upon extension removal.
* Validate installation via one of the following methods:
*
* Using PHP from a webserver:
* - Restart your webserver.
* - Write a PHP page that calls "phpinfo();"
* - Load it in a browser and look for the info on the mcrypt module.
* - If you see it, you have been successful!
*
* Using PHP from the command line:
* - Run `php -i "(command-line 'phpinfo()')"`
* - Look for the info on the mcrypt module.
* - If you see it, you have been successful!
==> Summary
?? /usr/local/Cellar/php53-mcrypt/5.3.29: 3 files, 44.8K
==> Installing php53-memcache from homebrew/php
==> Downloading https://homebrew.bintray.com/bottles-php/php53-memcache-2.2.7.el_capitan.bottle.1.tar.gz
######################################################################## 100.0%
==> Pouring php53-memcache-2.2.7.el_capitan.bottle.1.tar.gz
==> Caveats
To finish installing memcache for PHP 5.3:
* /usr/local/etc/php/5.3/conf.d/ext-memcache.ini was created,
do not forget to remove it upon extension removal.
* Validate installation via one of the following methods:
*
* Using PHP from a webserver:
* - Restart your webserver.
* - Write a PHP page that calls "phpinfo();"
* - Load it in a browser and look for the info on the memcache module.
* - If you see it, you have been successful!
*
* Using PHP from the command line:
* - Run `php -i "(command-line 'phpinfo()')"`
* - Look for the info on the memcache module.
* - If you see it, you have been successful!
==> Summary
?? /usr/local/Cellar/php53-memcache/2.2.7: 3 files, 54.1K
==> Installing php53-memcached from homebrew/php
==> Installing dependencies for homebrew/php/php53-memcached: php53-igbinary, memcached, libmemcached
==> Installing homebrew/php/php53-memcached dependency: php53-igbinary
==> Downloading https://homebrew.bintray.com/bottles-php/php53-igbinary-1.2.1.el_capitan.bottle.1.tar.gz
######################################################################## 100.0%
==> Pouring php53-igbinary-1.2.1.el_capitan.bottle.1.tar.gz
==> Caveats
To finish installing igbinary for PHP 5.3:
* /usr/local/etc/php/5.3/conf.d/ext-igbinary.ini was created,
do not forget to remove it upon extension removal.
* Validate installation via one of the following methods:
*
* Using PHP from a webserver:
* - Restart your webserver.
* - Write a PHP page that calls "phpinfo();"
* - Load it in a browser and look for the info on the igbinary module.
* - If you see it, you have been successful!
*
* Using PHP from the command line:
* - Run `php -i "(command-line 'phpinfo()')"`
* - Look for the info on the igbinary module.
* - If you see it, you have been successful!
==> Summary
?? /usr/local/Cellar/php53-igbinary/1.2.1: 6 files, 50.7K
==> Installing homebrew/php/php53-memcached dependency: memcached
==> Downloading https://homebrew.bintray.com/bottles/memcached-1.4.24.el_capitan.bottle.tar.gz
######################################################################## 100.0%
==> Pouring memcached-1.4.24.el_capitan.bottle.tar.gz
==> Caveats
To have launchd start memcached now and restart at login:
brew services start memcached
Or, if you don't want/need a background service you can just run:
/usr/local/opt/memcached/bin/memcached
==> Summary
?? /usr/local/Cellar/memcached/1.4.24: 10 files, 162.0K
==> Installing homebrew/php/php53-memcached dependency: libmemcached
==> Downloading https://homebrew.bintray.com/bottles/libmemcached-1.0.18_1.el_capitan.bottle.tar.gz
######################################################################## 100.0%
==> Pouring libmemcached-1.0.18_1.el_capitan.bottle.tar.gz
?? /usr/local/Cellar/libmemcached/1.0.18_1: 230 files, 1.8M
==> Installing homebrew/php/php53-memcached
==> Downloading https://homebrew.bintray.com/bottles-php/php53-memcached-2.2.0.el_capitan.bottle.1.tar.gz
######################################################################## 100.0%
==> Pouring php53-memcached-2.2.0.el_capitan.bottle.1.tar.gz
==> Caveats
To finish installing memcached for PHP 5.3:
* /usr/local/etc/php/5.3/conf.d/ext-memcached.ini was created,
do not forget to remove it upon extension removal.
* Validate installation via one of the following methods:
*
* Using PHP from a webserver:
* - Restart your webserver.
* - Write a PHP page that calls "phpinfo();"
* - Load it in a browser and look for the info on the memcached module.
* - If you see it, you have been successful!
*
* Using PHP from the command line:
* - Run `php -i "(command-line 'phpinfo()')"`
* - Look for the info on the memcached module.
* - If you see it, you have been successful!
==> Summary
?? /usr/local/Cellar/php53-memcached/2.2.0: 5 files, 105.6K
==> Installing php53-mongo from homebrew/php
==> Downloading https://homebrew.bintray.com/bottles-php/php53-mongo-1.6.14.el_capitan.bottle.tar.gz
######################################################################## 100.0%
==> Pouring php53-mongo-1.6.14.el_capitan.bottle.tar.gz
==> Caveats
To finish installing mongo for PHP 5.3:
* /usr/local/etc/php/5.3/conf.d/ext-mongo.ini was created,
do not forget to remove it upon extension removal.
* Validate installation via one of the following methods:
*
* Using PHP from a webserver:
* - Restart your webserver.
* - Write a PHP page that calls "phpinfo();"
* - Load it in a browser and look for the info on the mongo module.
* - If you see it, you have been successful!
*
* Using PHP from the command line:
* - Run `php -i "(command-line 'phpinfo()')"`
* - Look for the info on the mongo module.
* - If you see it, you have been successful!
==> Summary
?? /usr/local/Cellar/php53-mongo/1.6.14: 2 files, 346.5K
==> Installing php53-opcache from homebrew/php
==> Downloading https://homebrew.bintray.com/bottles-php/php53-opcache-7.0.5.el_capitan.bottle.1.tar.gz
######################################################################## 100.0%
==> Pouring php53-opcache-7.0.5.el_capitan.bottle.1.tar.gz
==> Caveats
To finish installing opcache for PHP 5.3:
* /usr/local/etc/php/5.3/conf.d/ext-opcache.ini was created,
do not forget to remove it upon extension removal.
* Validate installation via one of the following methods:
*
* Using PHP from a webserver:
* - Restart your webserver.
* - Write a PHP page that calls "phpinfo();"
* - Load it in a browser and look for the info on the opcache module.
* - If you see it, you have been successful!
*
* Using PHP from the command line:
* - Run `php -i "(command-line 'phpinfo()')"`
* - Look for the info on the opcache module.
* - If you see it, you have been successful!
==> Summary
?? /usr/local/Cellar/php53-opcache/7.0.5: 4 files, 121.8K
==> Installing php53-phalcon from homebrew/php
==> Downloading https://homebrew.bintray.com/bottles-php/php53-phalcon-2.0.9.el_capitan.bottle.tar.gz
######################################################################## 100.0%
==> Pouring php53-phalcon-2.0.9.el_capitan.bottle.tar.gz
==> Caveats
To finish installing phalcon for PHP 5.3:
* /usr/local/etc/php/5.3/conf.d/ext-phalcon.ini was created,
do not forget to remove it upon extension removal.
* Validate installation via one of the following methods:
*
* Using PHP from a webserver:
* - Restart your webserver.
* - Write a PHP page that calls "phpinfo();"
* - Load it in a browser and look for the info on the phalcon module.
* - If you see it, you have been successful!
*
* Using PHP from the command line:
* - Run `php -i "(command-line 'phpinfo()')"`
* - Look for the info on the phalcon module.
* - If you see it, you have been successful!
==> Summary
?? /usr/local/Cellar/php53-phalcon/2.0.9: 2 files, 3.4M
==> Installing php53-redis from homebrew/php
==> Installing dependencies for homebrew/php/php53-redis: igbinary
==> Installing homebrew/php/php53-redis dependency: igbinary
==> Downloading https://homebrew.bintray.com/bottles-php/igbinary-1.2.1.el_capitan.bottle.1.tar.gz
######################################################################## 100.0%
==> Pouring igbinary-1.2.1.el_capitan.bottle.1.tar.gz
?? /usr/local/Cellar/igbinary/1.2.1: 9 files, 19.6K
==> Installing homebrew/php/php53-redis
==> Downloading https://github.com/phpredis/phpredis/archive/2.2.7.tar.gz
==> Downloading from https://codeload.github.com/phpredis/phpredis/tar.gz/2.2.7
######################################################################## 100.0%
==> /usr/local/opt/php53/bin/phpize
==> ./configure --prefix=/usr/local/Cellar/php53-redis/2.2.7_1 --with-php-config=/usr/local/opt/php53/bin/php-config --enable-redis-igbinary
==> make
==> Caveats
To finish installing redis for PHP 5.3:
* /usr/local/etc/php/5.3/conf.d/ext-redis.ini was created,
do not forget to remove it upon extension removal.
* Validate installation via one of the following methods:
*
* Using PHP from a webserver:
* - Restart your webserver.
* - Write a PHP page that calls "phpinfo();"
* - Load it in a browser and look for the info on the redis module.
* - If you see it, you have been successful!
*
* Using PHP from the command line:
* - Run `php -i "(command-line 'phpinfo()')"`
* - Look for the info on the redis module.
* - If you see it, you have been successful!
==> Summary
?? /usr/local/Cellar/php53-redis/2.2.7_1: 4 files, 319.6K, built in 23 seconds
==> Installing php53-sphinx from homebrew/php
==> Installing dependencies for homebrew/php/php53-sphinx: libsphinxclient
==> Installing homebrew/php/php53-sphinx dependency: libsphinxclient
==> Downloading https://homebrew.bintray.com/bottles-php/libsphinxclient-2.2.10.el_capitan.bottle.tar.gz
######################################################################## 100.0%
==> Pouring libsphinxclient-2.2.10.el_capitan.bottle.tar.gz
?? /usr/local/Cellar/libsphinxclient/2.2.10: 4 files, 65.7K
==> Installing homebrew/php/php53-sphinx
==> Downloading https://pecl.php.net/get/sphinx-1.3.2.tgz
######################################################################## 100.0%
==> /usr/local/opt/php53/bin/phpize
==> ./configure --prefix=/usr/local/Cellar/php53-sphinx/1.3.2 --with-php-config=/usr/local/opt/php53/bin/php-config
==> make
==> Caveats
To finish installing sphinx for PHP 5.3:
* /usr/local/etc/php/5.3/conf.d/ext-sphinx.ini was created,
do not forget to remove it upon extension removal.
* Validate installation via one of the following methods:
*
* Using PHP from a webserver:
* - Restart your webserver.
* - Write a PHP page that calls "phpinfo();"
* - Load it in a browser and look for the info on the sphinx module.
* - If you see it, you have been successful!
*
* Using PHP from the command line:
* - Run `php -i "(command-line 'phpinfo()')"`
* - Look for the info on the sphinx module.
* - If you see it, you have been successful!
==> Summary
?? /usr/local/Cellar/php53-sphinx/1.3.2: 2 files, 76.8K, built in 13 seconds
==> Installing php53-swoole from homebrew/php
==> Downloading https://homebrew.bintray.com/bottles-php/php53-swoole-1.8.1.el_capitan.bottle.tar.gz
######################################################################## 100.0%
==> Pouring php53-swoole-1.8.1.el_capitan.bottle.tar.gz
==> Caveats
To finish installing swoole for PHP 5.3:
* /usr/local/etc/php/5.3/conf.d/ext-swoole.ini was created,
do not forget to remove it upon extension removal.
* Validate installation via one of the following methods:
*
* Using PHP from a webserver:
* - Restart your webserver.
* - Write a PHP page that calls "phpinfo();"
* - Load it in a browser and look for the info on the swoole module.
* - If you see it, you have been successful!
*
* Using PHP from the command line:
* - Run `php -i "(command-line 'phpinfo()')"`
* - Look for the info on the swoole module.
* - If you see it, you have been successful!
==> Summary
?? /usr/local/Cellar/php53-swoole/1.8.1: 2 files, 349.2K
==> Installing php53-uuid from homebrew/php
==> Downloading https://homebrew.bintray.com/bottles-php/php53-uuid-1.0.3.el_capitan.bottle.tar.gz
######################################################################## 100.0%
==> Pouring php53-uuid-1.0.3.el_capitan.bottle.tar.gz
==> Caveats
To finish installing uuid for PHP 5.3:
* /usr/local/etc/php/5.3/conf.d/ext-uuid.ini was created,
do not forget to remove it upon extension removal.
* Validate installation via one of the following methods:
*
* Using PHP from a webserver:
* - Restart your webserver.
* - Write a PHP page that calls "phpinfo();"
* - Load it in a browser and look for the info on the uuid module.
* - If you see it, you have been successful!
*
* Using PHP from the command line:
* - Run `php -i "(command-line 'phpinfo()')"`
* - Look for the info on the uuid module.
* - If you see it, you have been successful!
==> Summary
?? /usr/local/Cellar/php53-uuid/1.0.3: 2 files, 15.2K
==> Installing php53-xdebug from homebrew/php
==> Downloading http://xdebug.org/files/xdebug-2.2.7.tgz
==> Downloading from https://xdebug.org/files/xdebug-2.2.7.tgz
######################################################################## 100.0%
==> /usr/local/opt/php53/bin/phpize
==> ./configure --prefix=/usr/local/Cellar/php53-xdebug/2.2.7 --with-php-config=/usr/local/opt/php53/bin/php-config --enable-xdebug
==> make
==> Caveats
To finish installing xdebug for PHP 5.3:
* /usr/local/etc/php/5.3/conf.d/ext-xdebug.ini was created,
do not forget to remove it upon extension removal.
* Validate installation via one of the following methods:
*
* Using PHP from a webserver:
* - Restart your webserver.
* - Write a PHP page that calls "phpinfo();"
* - Load it in a browser and look for the info on the xdebug module.
* - If you see it, you have been successful!
*
* Using PHP from the command line:
* - Run `php -i "(command-line 'phpinfo()')"`
* - Look for the info on the xdebug module.
* - If you see it, you have been successful!
==> Summary
?? /usr/local/Cellar/php53-xdebug/2.2.7: 2 files, 167.0K, built in 29 seconds
bash-3.2#
  回復  更多評論
  

只有注冊用戶登錄后才能發表評論。
網站導航: 博客園   IT新聞   BlogJava   博問   Chat2DB   管理


青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
      <noscript id="pjuwb"></noscript>
            <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
              <dd id="pjuwb"></dd>
              <abbr id="pjuwb"></abbr>
              99国内精品久久| 亚洲午夜激情| 亚洲综合国产激情另类一区| 欧美一区2区三区4区公司二百| 国产视频一区在线观看| 欧美色播在线播放| 久久精品日产第一区二区三区| 欧美中文字幕在线播放| 亚洲天堂男人| 亚洲愉拍自拍另类高清精品| 亚洲理论电影网| 91久久久在线| 亚洲电影在线播放| 国产精品99久久久久久久vr| 亚洲第一中文字幕在线观看| 久久免费午夜影院| 久久久久久电影| 欧美电影在线观看完整版| 免费不卡在线视频| 亚洲欧洲精品一区二区| 亚洲精品国产精品国自产观看| 欧美大成色www永久网站婷| 免费在线亚洲欧美| 亚洲欧洲一区二区在线观看| 免费黄网站欧美| 亚洲三级影院| 久久成人综合网| 欧美激情一区二区三区成人| 麻豆精品在线播放| 国产精品久久久久久av福利软件 | 免费影视亚洲| 欧美日韩亚洲一区二区| 国产精品视频男人的天堂| 国产一区二区三区成人欧美日韩在线观看 | 欧美三日本三级少妇三2023| 免费高清在线视频一区·| 欧美激情在线免费观看| 国产精品久久久久久久第一福利 | 欧美日韩国产限制| 黑人一区二区| 亚洲天堂成人在线视频| 久久精品国产第一区二区三区最新章节 | 国产精品一卡二| 国产亚洲在线| 亚洲免费综合| 亚洲二区在线观看| 欧美一级二级三级蜜桃| 久久免费视频网| 亚洲精选视频免费看| 亚洲欧美日本国产专区一区| 久久不见久久见免费视频1| 欧美激情综合五月色丁香| 国产日韩亚洲| 狠狠色狠狠色综合日日五| 亚洲视频精选在线| 欧美福利视频一区| 久久久久久综合| 国产一区二区久久久| 亚洲午夜性刺激影院| 欧美激情亚洲精品| 久热精品视频在线| 影音先锋欧美精品| 久久综合久久综合久久| 99精品欧美一区二区三区综合在线| 亚洲视频欧洲视频| 欧美日韩国产一区| 99re国产精品| 亚洲国产成人精品视频| 久久久精品午夜少妇| 国产一区二区日韩精品| 亚洲欧美日韩中文播放| 亚洲第一网站| 欧美精品aa| 在线一区二区三区做爰视频网站| 久久这里只有精品视频首页| 中日韩男男gay无套| 欧美日韩国产片| 亚洲天天影视| 亚洲永久精品国产| 在线观看国产精品淫| 欧美二区在线看| 欧美日韩一区二区国产| 午夜精品福利视频| 久久精品国产欧美激情| 亚洲国产精品va在线观看黑人| 美女久久网站| 欧美日韩精品免费观看视频| 一区二区免费在线观看| 亚洲一区二区成人| 在线不卡欧美| 一区二区三区免费在线观看| 国产精品国产| 免费欧美在线视频| 欧美日韩精品在线观看| 亚洲综合三区| 久久一区精品| 亚洲欧美日韩电影| 久久综合影视| 99成人在线| 欧美中文字幕精品| 99国内精品久久| 久久精品欧洲| 亚洲理论电影网| 模特精品裸拍一区| 久久婷婷蜜乳一本欲蜜臀| 亚洲在线成人| 久久精品道一区二区三区| 亚洲啪啪91| 久久久一二三| 国产精品久久久久国产a级| 伊人婷婷久久| 久久久www成人免费精品| 亚洲精品乱码久久久久久按摩观| 欧美77777| 免费不卡在线观看| 亚洲欧洲美洲综合色网| 久久影院午夜论| 麻豆国产va免费精品高清在线| 国产丝袜一区二区| 欧美激情一区二区| 欧美乱大交xxxxx| 亚洲精品无人区| 亚洲精品久久久久中文字幕欢迎你 | 欧美不卡在线| 精品成人一区| 欧美a级理论片| 亚洲午夜久久久久久久久电影院| 久久久人成影片一区二区三区| 一区视频在线| 亚洲高清一区二区三区| 看片网站欧美日韩| 亚洲视频在线观看免费| 性色av香蕉一区二区| 欧美福利视频网站| 亚洲欧美日韩成人高清在线一区| 中日韩在线视频| 国产亚洲欧洲| 亚洲成人在线视频网站| 久久精品视频免费观看| 亚洲欧美三级伦理| 欧美在线观看视频在线 | 亚洲人在线视频| 国产精品永久免费视频| 亚洲欧美日韩一区二区| 性欧美18~19sex高清播放| 国产精品女主播在线观看| 久久久噜噜噜久久| 欧美国产专区| 久久男人av资源网站| 免费亚洲婷婷| 极品日韩久久| 免费日韩av| 久久久夜夜夜| 国产精品自拍视频| 亚洲精品在线观看免费| 国产欧美日韩三区| 伊人久久噜噜噜躁狠狠躁| 激情成人av| 99精品久久久| 久久亚洲精品一区| 亚洲精品视频在线看| 国产伦精品一区二区三区免费迷| 老司机久久99久久精品播放免费| 亚洲精品一区二区三区不| 亚洲欧洲视频在线| 欧美一区二区三区免费观看视频 | 欧美r片在线| 久久精品国产一区二区三| 久久国产色av| 亚洲尤物视频在线| 一本色道综合亚洲| 久久福利毛片| 国产欧美日韩不卡| 亚洲图中文字幕| 亚洲视频免费在线| 欧美高清视频一区二区三区在线观看| 亚洲美女免费精品视频在线观看| 国产伦精品一区二区三区四区免费 | 国产伦精品一区二区三区免费 | 国产视频综合在线| 老司机免费视频一区二区三区| 亚洲一级黄色| 欧美系列亚洲系列| 夜夜嗨av一区二区三区四季av| 国产一区二区你懂的| 性感少妇一区| 中国成人黄色视屏| 亚洲欧美一区二区三区在线 | 亚洲精品久久7777| 99精品视频一区二区三区| 亚洲欧美日韩一区二区在线| 久久中文字幕一区| 亚洲高清av| 在线视频你懂得一区| 久久一区免费| 亚洲观看高清完整版在线观看| 欧美怡红院视频一区二区三区| 国产精品另类一区| 欧美一区二区福利在线| 亚洲免费伊人电影在线观看av|