Skip to main content

How to install PHP and CGI on your Mac 

Here I explain how to install PHP and CGI on your .
You may need basic knowledge of Linux command, PHP, Java, Tomcat.

Please use the link below to go to further reading if necessary.

III. How to install PHP and CGI

1. Check PHP and CGI are installed
1.1. Check PHP version
Open Terminal and enter following command.
php -v
You can also find out where is php.ini by entering these following command.
which php
whereis php
1.2. Check CGI version
php-cgi

If you see your result as below, you have already installed PHP and CGI. If not, follow next step.


2. Install XCode
In order to use Port, you need to install XCode first.
Open AppStore and install XCode.
Make sure you run XCode after the installation.


3. Install Port
Here I show How to install Port.
If you have Brew, go head and use it instead of Port.

3.1. Download Port installer
Here is port file I found online. Please download Port installation file
3.2. Extract tar.gz file
tar xzvf MacPorts-2.4.1.tar.gz
3.3. Build and install the unpacked sources
cd MacPorts-2.4.1
make && sudo make install
3.4. If you would like to delete installation files, type following command
cd ../
rm -rf MacPorts-2.4.1*

4. Install CGI
4.1. Add /opt/local/bin to $PATH
vim ~/.bash_profile
$PATH = $PATH:{whatever directry you have here}:/opt/local/bin
4.2. Install the same version of PHP and CGI
It is also ok to install php and php-cgi separately.
sudo port install php53 php53-cgi
4.3. Make link to php and php-cgi
cd /opt/local/bin
ln -s php53 php
ln -s php-cgi53 php-cgi
If php and php-cgi already exist, use the following command for update instead.
ln -sfn

5. Check PHP and CGI version
Follow the instruction 1. Check PHP and CGI are installed.


If you have any suggestion and question, especially technically and grammatically, please feel free to leave your comment.

Thank you for your visit😊

Comments

Popular posts from this blog

How to deploy your PHP and Java file in PHP/JavaBridge

Here I explain how to deploy your PHP and Java file in your PHP/JavaBridge folder. You may need basic knowledge of Linux command, PHP , Java , Tomcat . Please use the link below to go to further reading if necessary. I. How to install Java II. How to install Tomcat III. How to install PHP and CGI IV. How to deploy PHP/JavaBridge V. How to deploy your PHP and Java files V. Deploy your PHP and Java file In this chapter, I will not talk detail about how to create and run Java . If you are curious about how to create PHP that executes Java , check PHP/JavaBridge site. 1. Create Java Hello World 1.1. Open eclipse and create Java Project . 1.2. Create HelloWorld.java file under the project. import javax.swing.JOptionPane; public class HelloWorld {     public static final String JAVABRIDGE_PORT="8080";     static final php.java.bridge.JavaBridgeRunner runner = php.java.bridge.JavaBridgeRunner.getInstance(JAVABRIDGE_PORT);     public stat...

How to install PHP/JavaBridge on Mac 

Looking for how to execute Java from PHP or vice versa? By using PHP/JavaBridge , it is possible! Here I write the instraction of how to set up PHP/JavaBridge on your Mac . You may need basic knowledge of Linux command, PHP , Java , Tomcat . Please read following links. I. How to install Java II. How to install Tomcat III. How to install PHP and CGI IV. How to deploy PHP/JavaBridge V. How to deploy your PHP and Java files If you have any suggestion and question, especially technically and grammatically, please feel free to leave your comment. Thank you for your visit😊

How to install Java on your Mac 

Here I explain about how to install Java on your . You may need basic knowledge of Linux command, PHP , Java , Tomcat . Please use the link below to go to further reading if necessary. I. How to install Java II. How to install Tomcat III. How to install PHP and CGI IV. How to deploy PHP/JavaBridge V. How to deploy your PHP and Java files I. How to install Java 1. Download JDK Install most up-to-date JDK from Oracle site . Click downloaded dmg file and follow the guidance. Please follow the step explain this site if you have problem following the instruction. 2. Set up JAVA_HOME 2.1. Open Terminal and enter the following command. vim ~/.bash_profile 2.2. Enter  i  to change to insert mode. 2.3. Add JAVA_HOME as follow. export JAVA_HOME=/Library/Java/JavaVirtualMachines/{your JDK folder}/Contents/Home 2.4. Press esc button and enter  :wq  to save and quit the .bash_profile . 2.5. Enter the command below to update bash source .bash_p...