← Alle Anleitungen
Flarum
Flarum is a modern, lightweight forum platform installed with Composer, then finished through a browser-based setup wizard.
Zielsystem: Ubuntu 22.04 LTS (PHP 8.3+, Apache/Nginx, MySQL/MariaDB or PostgreSQL)CommunityOffizielle Website ↗Offizielle Dokumentation ↗
Diese Anleitung basiert auf der offiziellen Dokumentation von Flarum, oben verlinkt — überprüfe dort immer die genauen Paket-/Versionsnamen, bevor du diese Befehle auf einem Produktionsserver ausführst, da sich Distributions- und Projektversionen mit der Zeit ändern.
1Check requirements
Confirm PHP 8.3+ with curl, dom, fileinfo, gd, json, mbstring, openssl, pdo_mysql, tokenizer, zip and session extensions, and a supported database (MySQL 5.7+/MariaDB 10.3+/SQLite 3.35+/PostgreSQL 10+).
2Install Flarum with Composer
composer create-project flarum/flarum:^2.0.0 --stability=beta .3Set folder permissions
The web server user needs read/write access to the root, storage and assets directories.
chmod 775 -R /path/to/directorychown -R www-data:www-data /path/to/directory4Configure the web server
Point the webroot at the public subdirectory and enable URL rewriting (mod_rewrite for Apache, or Flarum's provided .nginx.conf for Nginx).
5Finish setup in the browser
Navigate to your forum's URL and follow the on-screen installer to configure the database and create the admin account.