SDB Talk:LAMP setup
Followed this guide for Tumbleweed this week. There are no PHP7 packages officially for TW anymore, so to install PHP8, the command (including recommended packages) should be:
zypper in php8 php8-cli php8-mysql apache2-mod_php8 php8-gd php8-gettext php8-mbstring a2enmod
Secure install of MariaDB differs quite a bit in current version. Sadly i didn't have tmux logging on when i ran it. So i don't have current procedure saved anywhere.
Lastly, the /etc/apache2/conf.d/phpMyAdmin.conf has default setting of
<IfVersion >= 2.4> <IfModule !mod_access_compat.c> Require all deny </IfModule> <IfModule mod_access_compat.c> Order deny,allow Deny from all </IfModule> </IfVersion>
The "require all" bit needs to be "granted" for phpMyAdmin to work.
<IfModule !mod_access_compat.c> Require all granted </IfModule>
--Mirosol.mirosol (talk) 07:13, 11 March 2025 (UTC)
---
The installation instructions for phpMyAdmin should describe the package, shouldn't it?
If you look toward the bottom of the wiki, you will see how to install it, or do you mean there should be more explanation about phpMyAdmin?
Fails in OpenSUSE 42.3
with the error:
Problem: nothing provides libc.so.6(GLIBC_2.27)(64bit) needed by apache2-mod_php7-7.3.6-204.31.x86_64
Solution 1: do not install apache2-mod_php7-7.3.6-204.31.x86_64 Solution 2: break apache2-mod_php7-7.3.6-204.31.x86_64 by ignoring some of its dependencies
Leap 42.3 is no longer supported, I have verified the instructions for 15.1 (not Tumbleweed)
Should the instructions for SuSEfirewall2 be removed? Firewalld has been the standard since 15.0, I think. Thoughts?
Apache2 restart after phpMyAdmin install
I could not access the phpMyAdmin page before restarting Apache2. Is this the appropriate place to restart Apache2 or should it be restarted in a previous step. Either way it should be noted in the guide.