简体   繁体   中英

Apache and two versions of php on osx-lion

I have to version of PHP installed on my lion osx

/opt/local/bin/php (5.3.12)
/usr/bin/php (5.3.10)

When I try to install php modules using port , it refers to /opt/local/bin/php (5.3.12)

But when I start the web server the apache is using /usr/bin/php because if I look to the phpinfo on the apache webserver it tells me PHP Version 5.3.10 .

How can I fix this issue?
My goal is to install php-modules using port which affects the php used by apache.

Apache is using neither of those locations, in fact -- if you haven't changed the configuration, it's using the PHP module at /usr/libexec/apache2/libphp5.so . If the Macports install created an analogous module under /opt somewhere, you'll need to edit /etc/apache2/httpd.conf to point to the new location; if it didn't, you'll need to get it to make you one.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM