如何在Mac OS X Lion上安装php 5.4?

2022-08-30 16:24:00

我已经从 php.net 下载了php 5.4.0,我想在mac os X lion上升级它。

我还想问是否有人知道如何升级apache。

提前致谢。


嗨,我已经安装了它,但我不知道如何用httpd.conf配置它

 /usr/local/bin/php -v
PHP 5.4.0 (cli) (built: Mar  3 2012 02:41:24) 
Copyright (c) 1997-2012 The PHP Group
Zend Engine v2.4.0, Copyright (c) 1998-2012 Zend Technologies

我试图把它添加到httpd.conf

正如它所说,但Web服务器不想启动

LoadModule php5_module libexec/libphp5.so

答案 1

我已经写了一篇关于如何将本地PHP安装升级到5.4的博客。

在外部站点发生故障时存档内容:

Now let’s upgrade PHP in a few steps:

1. Download and unpack the PHP source archive
2. Install following packages using brew: libjpeg and pcre
3. Change directory to the source archive of PHP
4. Use the configure command to prepare the compilation process:

./configure  \
--prefix=/usr  \
--mandir=/usr/share/man  \
--infodir=/usr/share/info  \
--sysconfdir=/private/etc  \
--with-apxs2=/usr/sbin/apxs  \
--enable-cli  \
--with-config-file-path=/etc  \
--with-libxml-dir=/usr  \
--with-openssl=/usr  \
--with-kerberos=/usr  \
--with-zlib=/usr  \
--enable-bcmath  \
--with-bz2=/usr  \
--enable-calendar  \
--with-curl=/usr  \
--enable-dba  \
--enable-exif  \
--enable-ftp  \
--with-gd  \
--enable-gd-native-ttf  \
--with-icu-dir=/usr  \
--with-iodbc=/usr  \
--with-ldap=/usr  \
--with-ldap-sasl=/usr  \
--with-libedit=/usr  \
--enable-mbstring  \
--enable-mbregex  \
--with-mysql=mysqlnd  \
--with-mysqli=mysqlnd  \
--without-pear  \
--with-pdo-mysql=mysqlnd  \
--with-mysql-sock=/var/mysql/mysql.sock  \
--with-readline=/usr  \
--enable-shmop  \
--with-snmp=/usr  \
--enable-soap  \
--enable-sockets  \
--enable-sysvmsg  \
--enable-sysvsem  \
--enable-sysvshm  \
--with-tidy  \
--enable-wddx  \
--with-xmlrpc  \
--with-iconv-dir=/usr  \
--with-xsl=/usr  \
--enable-zip  \
--with-pcre-regex  \
--with-pgsql=/usr  \
--with-pdo-pgsql=/usr \
--with-freetype-dir=/usr/X11 \
--with-jpeg-dir=/usr  \
--with-png-dir=/usr/X11     

就是这样。配置成功后,使用“make test”检查您的编译,并使用“sudo make install”实际安装新版本。


答案 2

使用 MacPorts,

  sudo port install php54 

以上内容将在 /opt/local/bin/php54 中安装 php54

/etc] php54 -v
PHP 5.4.8 (cli) (built: Oct 19 2012 11:30:15) 
Copyright (c) 1997-2012 The PHP Group
Zend Engine v2.4.0, Copyright (c) 1998-2012 Zend Technologies
    with Xdebug v2.2.1, Copyright (c) 2002-2012, by Derick Rethans

您可以安装您喜欢的其他模块。例如,我经常使用memcache和apc。请执行下列操作:

  sudo port install php54-memcache php54-apc

对于您可能要添加的其他 php54 模块,您可以使用以下命令找到它们:

  port search php54

我做了以下操作,使其成为我的默认php

  sudo port select php php54

推荐