Changes between Version 21 and Version 22 of howto/MAMP


Ignore:
Timestamp:
Sep 22, 2008, 10:04:18 PM (16 years ago)
Author:
danocd@…
Comment:

Beginners will understand more

Legend:

Unmodified
Added
Removed
Modified
  • howto/MAMP

    v21 v22  
    3939}}}
    4040
    41 Point your browser to http://localhost/ and verify that Apache is running. (For Apache 2.2.8, you should see a giant "It works!" displayed.)
     41Point your browser to http://localhost/ (page refresh may be needed) and verify that Apache is running. (For Apache 2.2.9, you should see a giant "It works!" displayed.)
    4242
    4343Reboot your machine, point your browser again to http://localhost/, and verify that Apache has started and is running.
    4444
    45 You may want to enable local access to the "Apache HTTP Server Manual" and to User web pages. In `/opt/local/apache2/conf/httpd.conf`, uncomment the lines:
    46 
    47 {{{
     45You may want to enable local access to the "Apache HTTP Server Manual" and to User web pages. In `/opt/local/apache2/conf/httpd.conf`, search for the line
     46
     47{{{
     48#Include conf/extra/httpd-userdir.conf
     49}}}
     50
     51and uncomment it this way:
     52
     53{{{
     54#
    4855Include conf/extra/httpd-userdir.conf
    4956}}}
    5057
    51 and
    52 
    53 {{{
     58now uncomment the line
     59
     60{{{
     61#Include conf/extra/httpd-manual.conf
     62}}}
     63
     64the same way:
     65
     66{{{
     67#
    5468Include conf/extra/httpd-manual.conf
    5569}}}
     
    125139
    126140{{{
    127 mysql> exit
     141mysql> exit ;
    128142}}}
    129143
     
    149163}}}
    150164
    151 Update Apache's `httpd.conf` file to enhance the "DirectoryIndex" directive to include additional "index" files:
     165Update Apache's `httpd.conf` file to enhance the "DirectoryIndex" directive to include additional "index" files. Search for:
     166
     167{{{
     168DirectoryIndex index.html
     169}}}
     170
     171and change it this way:
    152172
    153173{{{