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)

Hot Topics

Java Tutorial
1664
14
PHP Tutorial
1268
29
C# Tutorial
1246
24
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.

Choosing Between PHP and Python: A Guide Choosing Between PHP and Python: A Guide Apr 18, 2025 am 12:24 AM

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

PHP and Python: A Deep Dive into Their History PHP and Python: A Deep Dive into Their History Apr 18, 2025 am 12:25 AM

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

Why Use PHP? Advantages and Benefits Explained Why Use PHP? Advantages and Benefits Explained Apr 16, 2025 am 12:16 AM

The core benefits of PHP include ease of learning, strong web development support, rich libraries and frameworks, high performance and scalability, cross-platform compatibility, and cost-effectiveness. 1) Easy to learn and use, suitable for beginners; 2) Good integration with web servers and supports multiple databases; 3) Have powerful frameworks such as Laravel; 4) High performance can be achieved through optimization; 5) Support multiple operating systems; 6) Open source to reduce development costs.

PHP's Impact: Web Development and Beyond PHP's Impact: Web Development and Beyond Apr 18, 2025 am 12:10 AM

PHPhassignificantlyimpactedwebdevelopmentandextendsbeyondit.1)ItpowersmajorplatformslikeWordPressandexcelsindatabaseinteractions.2)PHP'sadaptabilityallowsittoscaleforlargeapplicationsusingframeworkslikeLaravel.3)Beyondweb,PHPisusedincommand-linescrip

PHP vs. Python: Use Cases and Applications PHP vs. Python: Use Cases and Applications Apr 17, 2025 am 12:23 AM

PHP is suitable for web development and content management systems, and Python is suitable for data science, machine learning and automation scripts. 1.PHP performs well in building fast and scalable websites and applications and is commonly used in CMS such as WordPress. 2. Python has performed outstandingly in the fields of data science and machine learning, with rich libraries such as NumPy and TensorFlow.

The Continued Use of PHP: Reasons for Its Endurance The Continued Use of PHP: Reasons for Its Endurance Apr 19, 2025 am 12:23 AM

What’s still popular is the ease of use, flexibility and a strong ecosystem. 1) Ease of use and simple syntax make it the first choice for beginners. 2) Closely integrated with web development, excellent interaction with HTTP requests and database. 3) The huge ecosystem provides a wealth of tools and libraries. 4) Active community and open source nature adapts them to new needs and technology trends.

PHP: An Introduction to the Server-Side Scripting Language PHP: An Introduction to the Server-Side Scripting Language Apr 16, 2025 am 12:18 AM

PHP is a server-side scripting language used for dynamic web development and server-side applications. 1.PHP is an interpreted language that does not require compilation and is suitable for rapid development. 2. PHP code is embedded in HTML, making it easy to develop web pages. 3. PHP processes server-side logic, generates HTML output, and supports user interaction and data processing. 4. PHP can interact with the database, process form submission, and execute server-side tasks.

See all articles