


MAC environment installation php, apache, MacPorts and other environment configurations
When I started using the Mac environment, I felt very helpless because I used Windows before and I only knew some simple Mac commands. On the first day I entered the company, I had to configure the Mac environment. I checked a lot of Mac installations online. Environment articles, but the installation was not successful. Maybe those articles were not comprehensive enough for novices. Below I have compiled a note on installing the PHP environment for novices to refer to. If novices don’t know how to install it, just follow the steps in my notes.
1. Install the necessary software
1. To install MacPorts, you need to install X11 and Xcode first (X11 is already installed by default in Lion system), install it in the Appstore Just use Xcode.
After downloading Xcode, the general path is under /Application. You can copy it out for subsequent use:
$ cp -a /Application/Xcode.app ~/soft2.
2. Install MacPort
1. Download address: https://distfiles.macports.org/MacPorts/
MacPort manual download address: https://www.macports.org/install.php
You can directly download the latest version under Lion: https://distfiles.macports.org/MacPorts/MacPorts-2.4.2-10.12-Sierra.pkg
If a new version of MacPort appears, you can update it directly through the following command: $ sudo port -v selfupdate
Add MacPort to the environment variable sudo vim /etc/profile
export PATH=/opt/local/bin:$PATH export PATH=/opt/local/sbin:$PATH
2. Error solution, 1) Set the path of xcode-select, 2) Install the command line tool:
$ sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer
3. Apache installation configuration
1.port Install apache:
$ sudo port install apache2 cd /opt/local/etc/apache2/ sudo vim httpd.conf LoadModule rewrite_module lib/apache2/modules/mod_rewrite.so
Four, PHP installation configuration
1. Port to install the PHP environment, I install the version of PHP 5.6.40
$ sudo port install php56-apache2handler
Download, the following prompts
cd /opt/local/lib/apache2/modules sudo /opt/local/bin/apxs -a -e -n php5 mod_php56.so
2. Add the php module to apache, as prompted above, and execute the command prompted above.
$ cd /opt/local/lib/apache2/modules $ sudo /opt/local/bin/apxs -a -e -n php5 mod_php56.so
If you use multiple PHP versions and want to switch PHP versions and mount apache (the following operations are not recommended for beginners and can be ignored)
[Note: httpd.conf manually add the PHP module Mount with apache:
LoadModule php5_module lib/apache2/modules/mod_php56.so #注释打开
3. Install the php extension, select the extension as needed
$ 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)
When installing the php56-oracle extension, please note that basic and sdk cannot be downloaded when the port is automatically installed. Need Manually download and put it in the corresponding path:
You can find the corresponding path according to the log prompted when installing $ sudo port install php56-oracle
/opt/local/var/macports/distfiles/oracle-instantclient
The following URL is used to manually download the basic and sdk of oracle
https://www.oracle.com/technetwork/topics/intel-macsoft-096467.html
I downloaded the following version
instantclient-basic-macos.x64-11.2.0.4.0.zip instantclient-sdk-macos.x64-11.2.0.4.0.zip
Put the downloaded compressed package to the following path
cp instantclient-sdk-macos.x64-11.2.0.4.0.zip /opt/local/var/macports/distfiles/oracle-instantclient
4. Edit the httpd.conf file
$ sudo vim /opt/local/etc/apache2/httpd.conf
Add the following code to line 119
AddType application/x-httpd-php .php AddType application/x-httpd-php-source .phps
or
<FilesMatch .php$> SetHandler application/x-httpd-php </FilesMatch>
5. Open the virtual directory and edit the httpd.conf file
sudo vim /opt/local/etc/apache2/httpd.conf Include conf/extra/httpd-vhosts.conf #把这个注释去掉
6. Edit the httpd.conf file and change it to:
<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 granted
7. Edit the httpd.conf file and change the line of code ServerName www.localhost.com:80
Change to ServerName localhost:80
8. Configure the php.ini file
cd /opt/local/etc/php56 sudo cp php.ini-production php.ini
I have installed the above steps successfully. Just follow the steps above to install them step by step. , if you don’t understand something, you can leave a message. Thanks.
Everyone supports it. Hope it can help Xiaobai.
The above is the detailed content of MAC environment installation php, apache, MacPorts and other environment configurations. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



PHP remains important in modern web development, especially in content management and e-commerce platforms. 1) PHP has a rich ecosystem and strong framework support, such as Laravel and Symfony. 2) Performance optimization can be achieved through OPcache and Nginx. 3) PHP8.0 introduces JIT compiler to improve performance. 4) Cloud-native applications are deployed through Docker and Kubernetes to improve flexibility and scalability.

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

PHP and Python each have their own advantages and are suitable for different scenarios. 1.PHP is suitable for web development and provides built-in web servers and rich function libraries. 2. Python is suitable for data science and machine learning, with concise syntax and a powerful standard library. When choosing, it should be decided based on project requirements.

This article introduces several methods to check the OpenSSL configuration of the Debian system to help you quickly grasp the security status of the system. 1. Confirm the OpenSSL version First, verify whether OpenSSL has been installed and version information. Enter the following command in the terminal: If opensslversion is not installed, the system will prompt an error. 2. View the configuration file. The main configuration file of OpenSSL is usually located in /etc/ssl/openssl.cnf. You can use a text editor (such as nano) to view: sudonano/etc/ssl/openssl.cnf This file contains important configuration information such as key, certificate path, and encryption algorithm. 3. Utilize OPE

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

To set up a CGI directory in Apache, you need to perform the following steps: Create a CGI directory such as "cgi-bin", and grant Apache write permissions. Add the "ScriptAlias" directive block in the Apache configuration file to map the CGI directory to the "/cgi-bin" URL. Restart Apache.

The reasons why PHP is the preferred technology stack for many websites include its ease of use, strong community support, and widespread use. 1) Easy to learn and use, suitable for beginners. 2) Have a huge developer community and rich resources. 3) Widely used in WordPress, Drupal and other platforms. 4) Integrate tightly with web servers to simplify development deployment.

PHP is suitable for web development, especially in rapid development and processing dynamic content, but is not good at data science and enterprise-level applications. Compared with Python, PHP has more advantages in web development, but is not as good as Python in the field of data science; compared with Java, PHP performs worse in enterprise-level applications, but is more flexible in web development; compared with JavaScript, PHP is more concise in back-end development, but is not as good as JavaScript in front-end development.
