You are not logged in.
Pages: 1
Hi
I wanted to install lamp with php7 and I have small problem in configing Apache, the question is what should I put at the bottom of config file I put :
LoadModule php7_module modules/libphp7.so
AddHandler php7-script php
Include conf/extra/php7_module.conf
but it had problem and Apache did not start , what should I put instead of this code to work ??
Offline
Have you created a
conf/extra/php7_module.conf
as indicated in the aur comments?
Offline
Have you created a
conf/extra/php7_module.conf
as indicated in the aur comments?
How should I creat it ?
Offline
At a guess...
<IfModule dir_module>
<IfModule php7_module>
DirectoryIndex index.php index.html
<FilesMatch "\.php$">
SetHandler application/x-httpd-php
</FilesMatch>
<FilesMatch "\.phps$">
SetHandler application/x-httpd-php-source
</FilesMatch>
</IfModule>
</IfModule>
... should do it
Last edited by satanselbow (2015-12-16 16:43:25)
Offline
Thanks so much.
Every thing is working now.
Offline
Pages: 1