将 php7 位置设置为 Apache (Macports)
Set php7 location to Apache (Macports)
我已经使用 this tutorial 通过 MacPorts 安装 php7 到 El Capitan。
是否可以使用默认 OSX Apache(不是来自 MacPorts 的 Apache)执行 php7?如果是,我应该在 Apache 中的什么位置设置 php7 位置?
如果有人遇到同样的问题,this tutorial帮助解决了我的问题。
MacPorts 将只为 MacPorts 本身提供的 Apache httpd 而非系统版本构建所有模块。
请参阅 php70-apache2handler 端口的注释,了解如何启用该模块:
$ port notes php70-apache2handler
php70-apache2handler has the following notes:
If this is your first install, you need to enable php70-apache2handler in your web server.
To enable php70-apache2handler, run:
cd /opt/local/apache2/modules
sudo /opt/local/apache2/bin/apxs -a -e -n php7 mod_php70.so
我已经使用 this tutorial 通过 MacPorts 安装 php7 到 El Capitan。 是否可以使用默认 OSX Apache(不是来自 MacPorts 的 Apache)执行 php7?如果是,我应该在 Apache 中的什么位置设置 php7 位置?
如果有人遇到同样的问题,this tutorial帮助解决了我的问题。
MacPorts 将只为 MacPorts 本身提供的 Apache httpd 而非系统版本构建所有模块。
请参阅 php70-apache2handler 端口的注释,了解如何启用该模块:
$ port notes php70-apache2handler
php70-apache2handler has the following notes:
If this is your first install, you need to enable php70-apache2handler in your web server.
To enable php70-apache2handler, run:
cd /opt/local/apache2/modules
sudo /opt/local/apache2/bin/apxs -a -e -n php7 mod_php70.so