Debian Upgrade Bookworm To Trixie: Difference between revisions
Jump to navigation
Jump to search
(Created page with "== Web Application Using PHP and MariaDB == After upgrade, PHP would not work any more. Installation of package <code>libapache2-mod-php8.4</code> was required. Then the MariaDB (formerly MySQL) database could not be accessed which could be solved by installing <code>php8.4-mysql</code>. apt -y install libapache2-mod-php8.4 php8.4-mysql Category:Linux") |
(Added introduction) |
||
| Line 1: | Line 1: | ||
This article contains all problems that I encountered when upgrading Debian from 12/Bookworm to 13/Trixie. | |||
== Web Application Using PHP and MariaDB == | == Web Application Using PHP and MariaDB == | ||
Latest revision as of 21:04, 18 January 2026
This article contains all problems that I encountered when upgrading Debian from 12/Bookworm to 13/Trixie.
Web Application Using PHP and MariaDB
After upgrade, PHP would not work any more. Installation of package libapache2-mod-php8.4 was required. Then the MariaDB (formerly MySQL) database could not be accessed which could be solved by installing php8.4-mysql.
apt -y install libapache2-mod-php8.4 php8.4-mysql