Lightweight forum FluxBB
Introduction
FluxBB is a fork of the lightweight
PHP/MySQL-based forum PunbBB.
Setup
Set up an SMTP mail server
MySQL
- If you choose to save data in MySQL, first, set up and configure MySQL.
Create a database that will be used for FluxBB:
- mysql> CREATE DATABASE fluxbb;
- mysql> CREATE USER 'fluxbbadmin'@'localhost' IDENTIFIED BY 'test';
- mysql> GRANT ALL PRIVILEGES ON fluxbb.* TO 'fluxbbadmin'@'localhost'
WITH GRANT OPTION;
- mysql> SHOW GRANTS FOR 'fluxbbadmin'@'localhost';
- mysql> EXIT
- # mysql -u fluxbbadmin -p
- mysql> EXIT
FluxBB
- cd /tmp
- mkdir fluxbb
- cd fluxbb
- wget -c http://fluxbb.org/files/downloads/releases/fluxbb-1.4.1/fluxbb-1.4.1.tar.gz
- tar xzvf fluxbb-1.4.1.tar.gz
- rm fluxbb-1.4.1.tar.gz
- cd ..
- mv fluxbb /var/www
- cd /var/www/fluxbb
- chmod -R 777 ./cache/ ./img/avatars/
- http://srv/fluxbb/install.php
- Download the generated config.php, and upload it at the root of the
Fluxbb directory
- http://srv/fluxbb/
Q&A
Making the forum title clickable?
alternative to clicking on Index
Delegating user authentication to FluxBB from an external PHP application
http://fluxbb.fr/aide/doku.php?id=integration_site:common
http://fluxbb.org/docs/v1.4/dbstructure
http://fluxbb.org/docs/v1.4/variables
http://fluxbb.org/docs/v1.4/constants
Resources