Home Backend Development PHP Tutorial MAC environment installation php, apache, MacPorts and other environment configurations

MAC environment installation php, apache, MacPorts and other environment configurations

Aug 23, 2021 pm 05:24 PM
apache mac php

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.
Copy after login

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
Copy after login

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
Copy after login

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
Copy after login

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
Copy after login

Download, the following prompts

      cd /opt/local/lib/apache2/modules
      sudo /opt/local/bin/apxs -a -e -n php5 mod_php56.so
Copy after login

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
Copy after login

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     #注释打开
Copy after login

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)
Copy after login

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
Copy after login

The following URL is used to manually download the basic and sdk of oracle

https://www.oracle.com/technetwork/topics/intel-macsoft-096467.html
Copy after login

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
Copy after login

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
Copy after login

4. Edit the httpd.conf file

$  sudo vim /opt/local/etc/apache2/httpd.conf
Copy after login

Add the following code to line 119

AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
Copy after login

or

<FilesMatch .php$>
      SetHandler application/x-httpd-php
  </FilesMatch>
Copy after login

MAC environment installation php, apache, MacPorts and other environment configurations

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      #把这个注释去掉
Copy after login

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
Copy after login

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
Copy after login

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!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP and Python: Comparing Two Popular Programming Languages PHP and Python: Comparing Two Popular Programming Languages Apr 14, 2025 am 12:13 AM

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.

How to set the cgi directory in apache How to set the cgi directory in apache Apr 13, 2025 pm 01:18 PM

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.

PHP's Purpose: Building Dynamic Websites PHP's Purpose: Building Dynamic Websites Apr 15, 2025 am 12:18 AM

PHP is used to build dynamic websites, and its core functions include: 1. Generate dynamic content and generate web pages in real time by connecting with the database; 2. Process user interaction and form submissions, verify inputs and respond to operations; 3. Manage sessions and user authentication to provide a personalized experience; 4. Optimize performance and follow best practices to improve website efficiency and security.

The Enduring Relevance of PHP: Is It Still Alive? The Enduring Relevance of PHP: Is It Still Alive? Apr 14, 2025 am 12:12 AM

PHP is still dynamic and still occupies an important position in the field of modern programming. 1) PHP's simplicity and powerful community support make it widely used in web development; 2) Its flexibility and stability make it outstanding in handling web forms, database operations and file processing; 3) PHP is constantly evolving and optimizing, suitable for beginners and experienced developers.

What to do if the apache80 port is occupied What to do if the apache80 port is occupied Apr 13, 2025 pm 01:24 PM

When the Apache 80 port is occupied, the solution is as follows: find out the process that occupies the port and close it. Check the firewall settings to make sure Apache is not blocked. If the above method does not work, please reconfigure Apache to use a different port. Restart the Apache service.

PHP in Action: Real-World Examples and Applications PHP in Action: Real-World Examples and Applications Apr 14, 2025 am 12:19 AM

PHP is widely used in e-commerce, content management systems and API development. 1) E-commerce: used for shopping cart function and payment processing. 2) Content management system: used for dynamic content generation and user management. 3) API development: used for RESTful API development and API security. Through performance optimization and best practices, the efficiency and maintainability of PHP applications are improved.

PHP and Python: Different Paradigms Explained PHP and Python: Different Paradigms Explained Apr 18, 2025 am 12:26 AM

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

How to connect to the database of apache How to connect to the database of apache Apr 13, 2025 pm 01:03 PM

Apache connects to a database requires the following steps: Install the database driver. Configure the web.xml file to create a connection pool. Create a JDBC data source and specify the connection settings. Use the JDBC API to access the database from Java code, including getting connections, creating statements, binding parameters, executing queries or updates, and processing results.

See all articles