Changes between Version 85 and Version 86 of howto/MAMP


Ignore:
Timestamp:
Dec 30, 2014, 5:03:12 AM (9 years ago)
Author:
magill@…
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • howto/MAMP

    v85 v86  
    77 * Apache 2.2.* - See: [[howto/Apache2]] for instructions on installation of Apache2
    88 * MySQL 5.6.* - See: [[howto/MySQL]] for instructions on installation ofMySQL
    9  * PHP 5.6.* - See: [[howto/PhP]] for instructions on instalation of PhP
     9 * PHP 5.6.* - See: [[howto/PHP]] for instructions on instalation of PHP
    1010
    1111
     
    1414Install Apache
    1515Install MySQL
    16 Install PhP
    17 Modify Apache Configuration to support MySQL and PhP.
     16Install PHP
     17Modify Apache Configuration to support MySQL and PHP.
    1818
    19 = Integrate PhP with Apache =
     19= Integrate PHP with Apache =
    2020
    2121If this is your first install, you need to enable php56-apache2handler in your web server.
     
    5959Note: either of the above two edits are only required if the lines are not present in the httpd.conf file, as the apxs command (executed above) will add those for you.
    6060
    61 = Step 3: MySqL setup for PhP =
     61= Step 3: MySqL setup for PHP =
    6262Setup the MySQL default socket to use the MacPorts configuration (/opt/local/var/run/mysql5/mysqld.sock)
    6363
     
    101101?>
    102102}}}
    103 and place it in your Apache "`DocumentRoot`" directory (nominally: "`/opt/local/apache2/htdocs`") or your own user "`Sites`" directory if you activated user directories as specified above.
    104 Point your browser to http://localhost/phpinfo.php (or http://localhost/~username/phpinfo.php as applicable) and verify that the correct version of PHP is active (v5.6.4 as of this writing) and that MySQL support is active (you may want to search the page for "`mysql`"). \\
     103and place it in your Apache "`DocumentRoot`" directory (nominally: "`/opt/local/apache2/htdocs`") or your own user "`Sites`" directory if you activated user directories as
     104specified above.
     105Point your browser to http://localhost/phpinfo.php (or http://localhost/~username/phpinfo.php as applicable) and verify that the correct version of PHP is active (v5.6.4 as of this
     106writing) and that MySQL support is active (you may want to search the page for "`mysql`"). \\
    105107Note that this file needs to be readable and executable.
    106108
    107 * Remember to return to [[howto/PhP]] to complete the PhP installation.
     109* Remember to return to [[howto/PHP]] to complete the PHP installation.
    108110
    109 
    110 
    111 [wiki:howto <- Back to the HOWTO section]