Comments on Installing Apache2 With PHP5 And MySQL Support On OpenSUSE 13.1 (LAMP)
LAMP is short for Linux, Apache, MySQL, PHP. This tutorial shows how you can install an Apache2 webserver on an OpenSUSE 13.1 server with PHP5 support (mod_php) and MySQL support.
7 Comment(s)
Comments
muito show! ótimo!
It's work. thanks . respect
Step 4 doesn't have instructions for installing PHP; only the apache PHP module.
Just follow the instructions till the end, you will see that PHP gets installed as a dependency and you have a working apache + php setup at the end.
Thanks a lot itis super dooper !!
Thank you, it was a great help!
One thing that I needed to do in addition to the described procedure for pho was to enable the php mod
After "zypper install apache2-mod_php5"
> a2enmod -lactions alias auth_basic authn_file authz_host authz_groupfile authz_core authz_user autoindex cgi dir env expires include log_config mime negotiation setenvif ssl socache_shmcb userdir reqtimeout authn_core(still no php)
Solution:
> a2enmod php5
> systemctl restart apache2a2enmod -lactions alias auth_basic authn_file authz_host authz_groupfile authz_core authz_user autoindex cgi dir env expires include log_config mime negotiation setenvif ssl socache_shmcb userdir reqtimeout authn_core php5(php5 is now an enabled mod)