This project is a further development of an old (now defunc'd) TinyIB engine version.
- Can store posts as text files for a portable set-up capable of running on virtually any PHP host.
- Use MySQL, PostgreSQL or SQLite for an efficient set-up able to handle high amounts of traffic.
- Administration and moderation management:
- Each post has its own management button.
- You can set up list of moderators and janitors.
- Janitors can delete/approve posts and threads.
- Admin and moderators can:
- ban offensive/abusive posters across all boards;
- sticky threads, delete/approve posts and threads (see
ATOM_REQMOD
); - delete all posts and threads from the selected IP.
- Admin, moderators and janitors can:
- edit message text in posts;
- delete attached files;
- replace thumbnails of attached files by
spoiler.png
file; - post with red name when logged in;
- post using raw HTML.
- Ban logs and moderation logs.
- Text formatting:
- Markup buttons under the text area in postform.
- bbcode formatting (multiline text and nested tags), wakabamark.
- "Quote text" button that inserts selected text into the textarea with
>
symbols. - Named links formatting, like on github:
[atomboard](https://github.com/SthephanShinkufag/atomboard/)
- Posting:
- YouTube, Vimeo and SoundCloud embedding.
- CAPTCHA (a simple implementation or reCAPTCHA).
- Protection by IP lookups using ipregistry.co - block abusive IPs, IPs under proxy, VPN, TOR network and cloud providers.
- Post files:
- You can upload up to 4 files per post.
- Supported GIF, JPG, PNG, MP4, MOV, WebM and WebP upload.
- You can also upload, view and expand videos without instaled
mediainfo
andffmpegthumbnailer
. Videos will be injected right in page without generated thumbnails. - Allow new threads without requiring a file, or even disallow sending of files entirely.
- Posts:
- Reference links >>1234 to posts.
- Backlinks >>1234 from replying posts.
- Likes (reactions to posts).
- Displaying unique ID's
- Displaying country flags for posters (using GeoIp2 library).
- Highlighting posts by clicking on unique ID's.
- Custom default posts names.
- Posts deletion via password.
- Sending posts with "sage" not to bump the thread.
- Truncating long messages by size in bytes and by number of lines on index page.
- Threads:
- Threads can be locked for posting.
- Threads can be sticked to the top of index page.
- Endless thread mode, when old posts are deleted after the limit.
- Catalog page
catalog.html
. - Mobile devices friendly CSS.
- Verify the following are installed:
- PHP 7.4+
- GD Image Processing Library
- This library is usually installed by default.
- If you plan on disabling image uploads to use atomboard as a text board only, this library is not required.
cd
to the directory you wish to install atomboard.- Run
git clone https://github.com/SthephanShinkufag/atomboard.git ./
- Copy
settings.default.php
tosettings.php
. - Configure
settings.php
- When setting
ATOM_DBMODE
toflatfile
, note that all post and ban data are exposed as the database is composed of standard text files. Access to./inc/flatfile/
should be denied. - When setting
ATOM_DBMODE
topdo
, note that only the MySQL and PostgreSQL databases drivers have been tested. Theoretically it will work with any applicable driver, but this is not guaranteed. If you use an alternative driver, please report back. - To require moderation before displaying posts:
- Ensure your
ATOM_DBMODE
is set tomysql
,mysqli
, orpdo
. - Set
ATOM_REQMOD
tofiles
to require moderation for posts with files attached. - Set
ATOM_REQMOD
toall
to require moderation for all posts. - Moderate posts by visiting the management panel.
- Ensure your
- To allow thumbnails generation for video and embedded files:
- Ensure your web host is running Linux or FreeBSD.
- Install mediainfo and ffmpegthumbnailer. On Ubuntu, run
sudo apt-get install mediainfo ffmpegthumbnailer
. On FreeBSD, runpkg install mediainfo ffmpegthumbnailer
.
- To remove the play icon from WebM/MP4/MOV thumbnails, delete or rename
icons/video_overlay.png
or setATOM_VIDEO_OVERLAY
to false. - To use ImageMagick instead of GD when creating thumbnails:
- Install ImageMagick and ensure that the
convert
command is available. - Set
ATOM_FILE_THUMBDRIVER
toimagemagick
. - Note: GIF files will have animated thumbnails, which will often have large file sizes.
- Install ImageMagick and ensure that the
- To show contry flags for posters:
- On Ubuntu, run
sudo apt-get install geoip geoip-dev
. On FreeBSD, runpkg install geoip geoip-dev
. - If using geoip2, download
GeoLite2-Country.mmdb
library, copy to/usr/share/GeoIP/GeoLite2-Country.mmdb
- On Ubuntu, run
- When setting
- CHMOD write permissions to these directories:
./
(the directory containing atomboard)./src/
./thumb/
./res/
./inc/flatfile/
(only if you use theflatfile
database mode).
- Navigate your browser to
imgboard.php
and the following will take place:- The database structure will be created.
- Directories will be verified to be writable.
- The board index will be written to
ATOM_INDEX
.
If you are not logged in already, log in to the management panel by clicking [Manage]
.
From this page you are able to delete the post, attached files and/or ban the author.
While you are logged in, the post moderation buttons will now be available.
- Obtain the latest release.
- If you installed via Git, run
git pull
in atomboard's directory. - Otherwise, download and extract a zipped archive.
- If you installed via Git, run
- Note which files were modified.
- If
settings.default.php
was updated, migrate the changes tosettings.php
- Take care to not change the value of
ATOM_TRIPSEED
, as it would result in different secure tripcodes.
- Take care to not change the value of
- If other files were updated, and you have made changes yourself:
- Visit GitHub and review the changes made in the update.
- Ensure the update does not interfere with your changes.
- If
Database structure was last modified on 04th Sep 2019.
atomboard includes a database migration tool, which currently only supports migrating from flat file mode to MySQL. While the migration is in progress, visitors will not be able to create or delete posts.
- Edit
settings.php
:- Ensure
ATOM_DBMODE
is still set toflatfile
. - Set
ATOM_DBMIGRATE
totrue
. - Configure all MySQL-related settings.
- Ensure
- Open the management panel.
- Click
Migrate Database
. - Click
Start the migration
. - If the migration was successful:
- Edit
settings.php
- Set
ATOM_DBMODE
tomysqli
. - Set
ATOM_DBMIGRATE
tofalse
.
- Set
- Click
Rebuild All
and ensure the board still looks the way it should.
- Edit
If there was a warning about AUTO_INCREMENT not being updated, you'll need to update it manually via a more privileged MySQL user. Run the following query for one or both of the tables, dependant of the warnings you were issued:
ALTER TABLE (table name) AUTO_INCREMENT = (value to be set)
- Ensure you are running the latest version of atomboard.
- Review the open issues.
- Open a new issue.
- Fork atomboard.
- Commit code changes to your forked repository.
- Submit a pull request describing your modifications.