Tinyboard/README.md

123 lines
4.4 KiB
Markdown
Raw Normal View History

Tinyboard - A lightweight PHP imageboard.
2014-04-18 13:55:58 +02:00
========================================================
2014-04-18 13:55:58 +02:00
About
------------
Tinyboard is a free light-weight, fast, highly configurable and user-friendly imageboard software package. It is written in PHP and has few dependencies.
History
------------
Tinyboard is defunct no longer. Circlepuller and others aim to modernize and optimize the additions that the vichan fork brought into this updated software.
2013-08-20 21:58:44 -04:00
2012-03-12 05:17:15 +11:00
Requirements
------------
1. PHP >= 7.0
2. MySQL/MariaDB server >= 5.5.3
2013-07-31 00:29:49 -04:00
3. [mbstring](http://www.php.net/manual/en/mbstring.installation.php)
4. [PHP GD](http://www.php.net/manual/en/intro.image.php)
5. [PHP PDO](http://www.php.net/manual/en/intro.pdo.php)
2011-01-20 13:48:53 +11:00
We try to make sure Tinyboard is compatible with all major web servers and
operating systems. Tinyboard does not include an Apache ```.htaccess``` file nor does
2012-03-12 05:17:15 +11:00
it need one.
2013-07-31 00:29:49 -04:00
### Recommended
1. ImageMagick (command-line ImageMagick or GraphicsMagick preferred).
2. [APC (Alternative PHP Cache)](http://php.net/manual/en/book.apc.php),
2014-04-19 20:42:22 +02:00
[XCache](http://xcache.lighttpd.net/) or
[Redis](http://pecl.php.net/package/redis)
2013-07-31 00:29:49 -04:00
2012-03-12 05:17:15 +11:00
Contributing
------------
You can contribute to Tinyboard by:
2012-08-27 02:52:31 +10:00
* Developing patches/improvements/translations and using GitHub to submit pull requests
* Providing feedback and suggestions
* Writing/editing documentation
2012-08-28 17:23:10 +10:00
2012-08-27 02:52:31 +10:00
If you need help developing a patch, please join our IRC channel.
2012-03-12 05:17:15 +11:00
Installation
-------------
1. Download and extract Tinyboard to your web directory or get the latest
2012-03-12 05:26:19 +11:00
development version with:
2012-03-12 14:11:52 +11:00
git clone git://github.com/Circlepuller/Tinyboard.git
2. Download and install required external third-party dependencies
into the ```vendor/``` directory with:
composer install
3. Navigate to ```install.php``` in your web browser and follow the
2012-03-12 05:26:19 +11:00
prompts.
4. Tinyboard should now be installed. Log in to ```mod.php``` with the
2012-03-12 14:21:44 +11:00
default username and password combination: **admin / password**.
Please remember to change the administrator account password.
See also: [Configuration Basics](https://web.archive.org/web/20121003095922/http://tinyboard.org/docs/?p=Config).
2012-03-12 05:26:19 +11:00
Upgrade
-------
To upgrade from any version of Tinyboard (or vichan):
Either run ```git pull``` to update your files, if you used git, or
backup your ```inc/instance-config.php```, replace all your files in place
(don't remove boards etc.), then put ```inc/instance-config.php``` back and
finally run ```install.php```.
2012-03-12 05:17:15 +11:00
Support
--------
Tinyboard is still beta software -- there are bound to be bugs. If you find a
2012-03-12 05:17:15 +11:00
bug, please report it.
2014-04-18 21:09:39 +02:00
If you need assistance with installing, configuring, or using vichan, you may
2012-03-12 05:17:15 +11:00
find support from a variety of sources:
* If you're unsure about how to enable or configure certain features, make
sure you have read the comments in ```inc/config.php```.
* Ask for help on [AwsumChan's Meta/Support board](https://awsumchan.org/aw/).
* You can join this IRC channel for support
[m.ircd.moe #dev](irc://m.ircd.moe/dev)
* Legacy Tinyboard documentation can be found [here](https://web.archive.org/web/20121016074303/http://tinyboard.org/docs/?p=Main_Page).
2014-04-21 17:15:06 +02:00
2014-04-18 13:55:58 +02:00
CLI tools
-----------------
2014-04-18 13:55:58 +02:00
There are a few command line interface tools, based on Tinyboard-Tools. These need
to be launched from a Unix shell account (SSH, or something). They are located in a ```tools/```
directory.
You actually don't need these tools for your imageboard functioning, they are aimed
at the power users. You won't be able to run these from shared hosting accounts
(i.e. all free web servers).
2018-11-29 02:26:47 -05:00
Localization
2014-04-18 13:55:58 +02:00
------------
Wanting to have Tinyboard in your language? You can contribute your translations at this URL:
2014-04-18 13:55:58 +02:00
2014-04-18 21:09:39 +02:00
https://www.transifex.com/projects/p/tinyboard-vichan-devel/
2012-03-14 20:00:57 +11:00
2014-04-29 14:59:17 -04:00
Oekaki
------
Tinyboard makes use of [wPaint](https://github.com/websanova/wPaint) for oekaki. After you pull the repository, however, you will need to download wPaint separately using git's `submodule` feature. Use the following commands:
2014-04-29 14:59:17 -04:00
```
git submodule init
git submodule update
```
To enable oekaki, add all the scripts listed in `js/wpaint.js` to your `instance-config.php`.
2014-04-29 14:59:17 -04:00
2014-04-29 15:01:34 -04:00
WebM support
------------
Read `inc/lib/webm/README.md` for information about enabling webm.
Tinyboard API
----------
Tinyboard provides by default a 4chan-compatible JSON API. For documentation on this, see:
https://github.com/vichan-devel/vichan-API/ .
2012-03-12 05:17:15 +11:00
License
--------
See [LICENSE.md](http://github.com/Circlepuller/Tinyboard/blob/master/LICENSE.md).