Php_for_mac Php For Mac
MacOS Update: While these instructions still work, there are new posts for recent versions of macOS, the latest being. PHP Update: Mac OS X El Capitan comes pre-installed with PHP version 5.5 which has reached its. After you complete this post, you should. Note: This post is for new installations. If you have, read my post on.
Mac OS X runs atop UNIX. So most UNIX software installs easily on Mac OS X. Furthermore, Apache and PHP come packaged with Mac OS X. To create a local web server, all you need to do is configure Apache and install MySQL. I am aware of the web server software available for Mac OS X, notably.
Install Php On Mac
These get you started quickly. But they forego the learning experience and, as most developers report, can become difficult to manage. Running Commands First, open the Terminal app and switch to the root user so you can run the commands in this post without any permission issues: sudo su - Enable Apache on Mac OS X apachectl start Verify It works! By accessing Enable PHP for Apache First, make a backup of the default Apache configuration. This is good practice and serves as a comparison against future versions of Mac OS X.
Cd /etc/apache2/ cp httpd.conf httpd.conf.bak Now edit the Apache configuration. Feel free to use TextEdit if you are not familiar with vi. Vi httpd.conf Uncomment the following line (remove #): LoadModule php5module libexec/apache2/libphp5.so Restart Apache: apachectl restart You can verify PHP is enabled by creating a page in your DocumentRoot. The default DocumentRoot for Mac OS X El Capitan is /Library/WebServer/Documents. You can verify this from your Apache configuration.
Grep DocumentRoot httpd.conf Now create the phpinfo page in your DocumentRoot: echo ' /Library/WebServer/Documents/phpinfo.php Verify PHP by accessing Install MySQL on Mac OS X El Capitan and install the latest MySQL generally available release DMG for Mac OS X. The README suggests creating aliases for mysql and mysqladmin.

However there are other commands that are helpful such as mysqldump. Instead, you can to include /usr/local/mysql/bin. Export PATH=/usr/local/mysql/bin:$PATH Note: You will need to open a new Terminal window or run the command above for your path to update.
Finally, you should run mysqlsecureinstallation. While this isn’t necessary, it’s good practice to secure your database. Connect PHP and MySQL You need to ensure PHP and MySQL can communicate with one another. There are to do so.
Run Php On Mac
I do the following: cd /var mkdir mysql cd mysql ln -s /tmp/mysql.sock mysql.sock Additional Configuration (optional) The default configuration for Apache 2.4 on Mac OS X seemed pretty lean. For example, common modules like modrewrite were disabled.
You may consider enabling this now to avoid forgetting they are disabled in the future. I edited my Apache Configuration: vi /etc/apache2/httpd.conf I uncommented the following lines (remove #): LoadModule deflatemodule libexec/apache2/moddeflate.so LoadModule expiresmodule libexec/apache2/modexpires.so LoadModule rewritemodule libexec/apache2/modrewrite.so If you develop multiple projects and would like each to have a unique url, you can. If you would like to install, return to my original post on.
Find this interesting? Continue the conversation on or in a.