Changes between Initial Version and Version 1 of Ticket #39260


Ignore:
Timestamp:
May 28, 2013, 11:52:46 AM (11 years ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

The intention is that you will include extra/mod_php.conf in your httpd.conf. So I think your only complaint is that the port doesn't tell you to do this, which is covered by #12108.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #39260

    • Property Keywords apache php removed
    • Property Status changed from new to closed
    • Property Resolution changed from to duplicate
  • Ticket #39260 – Description

    initial v1  
    55Last PHP instructions to assist in enabling PHP on Apache were these:
    66
    7 
     7{{{
    88To enable PHP in Apache, run
    99  cd /opt/local/apache2/modules
    1010  /opt/local/apache2/bin/apxs -a -e -n "php5" libphp5.so
     11}}}
    1112
    1213That worked correctly - and added the 'LoadModule' in the httpd.conf file.
     
    1617Apache documentation said FIlesMatch needed to be added to the httpd.conf file for PHP to work:
    1718
     19{{{
    1820# Then, configure the handler for all files that end with .php
    1921
     
    2628
    2729</FilesMatch>
     30}}}
    2831
    2932That fixed the problem.