Changes between Version 87 and Version 88 of howto/MAMP


Ignore:
Timestamp:
Dec 30, 2014, 11:46:43 AM (9 years ago)
Author:
neverpanic (Clemens Lang)
Comment:

typos

Legend:

Unmodified
Added
Removed
Modified
  • howto/MAMP

    v87 v88  
    66
    77 * Apache 2.2.* - See: [[howto/Apache2]] for instructions on installation of Apache2
    8  * MySQL 5.6.* - See: [[howto/MySQL]] for instructions on installation ofMySQL
    9  * PHP 5.6.* - See: [[howto/PHP]] for instructions on instalation of PHP
     8 * MySQL 5.6.* - See: [[howto/MySQL]] for instructions on installation of MySQL
     9 * PHP 5.6.* - See: [[howto/PHP]] for instructions on installation of PHP
    1010
    1111
    1212Simplified sequence:
    1313
    14 Install Apache
    15 Install MySQL
    16 Install PHP
    17 Modify Apache Configuration to support MySQL and PHP.
     14 * Install Apache
     15 * Install MySQL
     16 * Install PHP
     17 * Modify Apache Configuration to support MySQL and PHP.
    1818
    1919= Integrate PHP with Apache =
     
    9191}}}
    9292
    93 = Step 4: Craete phpinfo =
     93= Step 4: Create phpinfo =
    9494This is used to test the configuration after you have integrated it with Apache and MySQL.
    9595
    96 Create a file named `phpinfo.php` that contains the following three lines
     96Create a file named `phpinfo.php` that contains the following two lines
    9797
    9898{{{
    9999<?php
    100100phpinfo();
    101 ?>
    102101}}}
    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
    104 specified above.
    105 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
    106 writing) and that MySQL support is active (you may want to search the page for "`mysql`"). \\
     102and 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.
     103Point 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`"). \\
    107104Note that this file needs to be readable and executable.
    108105