ForkBB is a free and open source forum software.
Find a file
2023-06-17 19:58:41 +07:00
app Increase parser and SCEditor synchronization + return inline style for color, background, font bbcodes 2023-06-17 16:21:07 +07:00
public Increase parser and SCEditor synchronization + return inline style for color, background, font bbcodes 2023-06-17 16:21:07 +07:00
vendor Fix Parserus: Instead of an offset in the list of children, the index of the child was used 2023-06-17 19:58:41 +07:00
.dist.htaccess Fix for LiteSpeed and the rewrite rule [L] flag 2023-06-16 16:38:17 +07:00
.gitignore Temp files in cache 2023-05-14 21:44:55 +07:00
composer.json Update composer.json 2023-06-02 11:43:50 +07:00
composer.lock Update composer.json 2022-01-16 23:46:12 +07:00
index.dist.php Update two initial variables 2021-01-26 22:32:34 +07:00
LICENSE Update LICENSE 2023-01-03 15:00:37 +07:00
nginx.dist.conf Update nginx.dist.conf 2021-02-04 22:32:05 +07:00
readme.md Update readme.md 2023-06-04 11:12:31 +07:00

ForkBB rev.57 Alpha Readme

About

ForkBB is a free and open source forum software. The project is based on FluxBB_by_Visman

Note

Please DO NOT use this revision in production, it is for test only.

Requirements

  • PHP 8.0+
  • PHP extensions: pdo, intl, json, mbstring, fileinfo
  • PHP extensions (suggests): imagick or gd (for upload avatars and other images), openssl (for send email via smtp server using SSL/TLS), curl (for OAuth)
  • A database such as MySQL 5.5.3+ (an extension using the mysqlnd driver must be enabled), SQLite 3.25+, PostgreSQL 10+

Install

For Apache:

Apache must have mod_rewrite and mod_headers enabled. Also, the AllowOverride directive must be set to All.

Two options

  1. Document Root != public folder:
    • Rename .dist.htaccess to .htaccess,
    • Rename index.dist.php to index.php.
  2. Document Root == public folder (recommended):
    • Rename public/.dist.htaccess to public/.htaccess,
    • Rename public/index.dist.php to public/index.php;

Note

To determine which of these two options is yours, then immediately after uploading the engine to your site (before these changes), make two requests:

  1. your.site/public/robots.txt
  2. your.site/robots.txt

On one of the requests, you should see the content of the robots.txt file. Similar to:

User-agent: *
Disallow: /adm
Disallow: /log
Disallow: /mod
Disallow: /reg
Disallow: /search
Disallow: /userlist
Disallow: /post

On which option you see the contents of the file, choose the option for changing the file names above. P.S. If you see the contents of the file in both cases, then something went wrong or you have already changed the names of the files .dist.htaccess and index.dist.php.

For NGINX:

  • Example nginx configuration.
  • Note: Root must point to the public/ directory.
  • Note: The index.dist.php file does not need to be renamed.

Favicon

  • You can rename public/favicon48.ico file to public/favicon.ico
  • You can create your own favicon file and copy it to public/favicon.ico

License

This project is under MIT license. Please see the license file for details.