diff options
author | Britney Fransen <brfransen@gmail.com> | 2016-10-25 14:58:41 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2016-10-25 14:58:41 (GMT) |
commit | 8d29737682e67ca7276fae0b1e8e69578ce61428 (patch) | |
tree | 4cc01d92c820214a4e5249575eb7f5ccd6c142bb /abs/core/php/php-apache.install | |
parent | db8bcbe3926e77c0144204beda14dee25a388d39 (diff) | |
parent | 927a8f226e532ba2187e8a9c9292453c3896f571 (diff) | |
download | linhes_pkgbuild-8d29737682e67ca7276fae0b1e8e69578ce61428.zip linhes_pkgbuild-8d29737682e67ca7276fae0b1e8e69578ce61428.tar.gz linhes_pkgbuild-8d29737682e67ca7276fae0b1e8e69578ce61428.tar.bz2 |
Merge branch 'testing'
Diffstat (limited to 'abs/core/php/php-apache.install')
-rw-r--r-- | abs/core/php/php-apache.install | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/abs/core/php/php-apache.install b/abs/core/php/php-apache.install new file mode 100644 index 0000000..c9b6691 --- /dev/null +++ b/abs/core/php/php-apache.install @@ -0,0 +1,11 @@ +post_install() { + echo "You will need to add the following line after the existing LoadModule instructions in /etc/httpd/conf/httpd.conf :" + echo "LoadModule php5_module modules/libphp56.so" + echo + echo "Additionally, include this line at the end of /etc/httpd/conf/httpd.conf if you want .php files to be handled by php 5.6 :" + echo "Include conf/extra/php56_module.conf" + echo + echo "Be aware that ONLY A SINGLE PHP MODULE can be loaded into an Apache instance." + echo "If you want php 5 and php 7 to cohabitate, you'll have to use another method such as php-fpm, fcgi or cgi for the other PHP version." +} + |