Changes between Version 92 and Version 93 of howto/MAMP


Ignore:
Timestamp:
Aug 14, 2017, 4:58:54 PM (7 years ago)
Author:
paxperscientiam (Chris)
Comment:

Included alternative examples for PHP7. Not confident with mysql stuff though

Legend:

Unmodified
Added
Removed
Modified
  • howto/MAMP

    v92 v93  
    2828$ cd /opt/local/apache2/modules
    2929$ sudo /opt/local/apache2/bin/apxs -a -e -n php5 mod_php56.so
     30$ # or, if you're using php7...
     31$ sudo /opt/local/apache2/bin/apxs -a -e -n php7 mod_php71.so
    3032}}}
    3133This should return the message:
     
    5052# Include PHP configurations
    5153Include conf/extra/mod_php56.conf
     54# Or...
     55Include conf/extra/mod_php71.conf
    5256}}}
     57
    5358Verify that in the Dynamic Shared Object (DSO) Support  section the following have been added.
    5459{{{
    5560# Load the PHP module
    5661LoadModule php5_module modules/mod_php56.so
     62# Or...
     63LoadModule php7_module modules/mod_php71.so
    5764}}}
    5865