shimmie2 for okebooru! changes are mostly cosmetic https://booru.oke.moe
Go to file
im-mi 8805f0dd18 Remove get_ico page
It's no longer needed because ICO now uses Image->get_image_link()
2016-09-26 11:18:06 -04:00
core Fixed comment-delete code-injection vulnerability 2016-09-14 17:42:32 -04:00
ext Remove get_ico page 2016-09-26 11:18:06 -04:00
lib extra cookie updates 2016-06-20 00:24:50 +01:00
tests unit tests are input too 2016-07-30 23:08:08 +01:00
themes Fixed comment-delete code-injection vulnerability 2016-09-14 17:42:32 -04:00
.buildpath playing with eclipse... 2012-08-15 20:11:10 +01:00
.gitignore init composer 2016-06-18 06:16:02 +01:00
.htaccess Remove get_ico page 2016-09-26 11:18:06 -04:00
.project playing with eclipse... 2012-08-15 20:11:10 +01:00
.scrutinizer.yml don't run linter on ext/*/lib/* 2016-06-18 19:00:53 +01:00
.travis.yml this shouldn't be indented under matrix.. 2016-06-19 05:25:40 +01:00
README.markdown tiny readme tweak 2016-06-27 20:49:07 +01:00
composer.json temp solution to avoid removing modernizr lib 2016-06-18 06:28:53 +01:00
composer.lock add composer.lock for scrutinizer-ci 2016-06-18 19:43:04 +01:00
index.php throw error if vendor/ doesn't exist 2016-06-18 06:42:52 +01:00
install.php <font> is deprecated 2016-06-18 06:28:28 +01:00

README.markdown

     _________.__     .__                   .__         ________   
    /   _____/|  |__  |__|  _____    _____  |__|  ____  \_____  \  
    \_____  \ |  |  \ |  | /     \  /     \ |  |_/ __ \  /  ____/  
    /        \|   Y  \|  ||  Y Y  \|  Y Y  \|  |\  ___/ /       \  
   /_______  /|___|  /|__||__|_|  /|__|_|  /|__| \___  >\_______ \ 
           \/      \/           \/       \/          \/         \/ 
                                                                

Shimmie

Build Status Scrutinizer Code Quality Code Coverage (master)

Build Status Scrutinizer Code Quality Code Coverage (develop)

This is the main branch of Shimmie, if you know anything at all about running websites, this is the version to use.

Alternatively if you want a version that will never have significant changes, check out one of the versioned branches.

Requirements

  • MySQL/MariaDB 5.1+ (with experimental support for PostgreSQL 9+ and SQLite 3)
  • Stable PHP (5.5 as of writing)
  • GD or ImageMagick

Installation

  1. Download the latest release under Releases.
  2. Unzip shimmie into a folder on the web host
  3. Create a blank database
  4. Visit the folder with a web browser
  5. Enter the location of the database
  6. Click "install". Hopefully you'll end up at the welcome screen; if not, you should be given instructions on how to fix any errors~

Installation (Development)

  1. Download shimmie via the "Download Zip" button on the develop branch.
  2. Unzip shimmie into a folder on the web host
  3. Install Composer. (If you don't already have it)
  4. Run composer global require "fxp/composer-asset-plugin:~1.1" --no-plugins. (This is installed globally due to a known composer bug)
  5. Run composer install in the shimmie folder.
  6. Follow instructions noted in "Installation" starting from step 3.

Upgrade from 2.3.X

  1. Backup your current files and database!
  2. Unzip into a clean folder
  3. Copy across the images, thumbs, and data folders
  4. Move old/config.php to new/data/config/shimmie.conf.php
  5. Edit shimmie.conf.php to use the new database connection format:

OLD Format:

$database_dsn = "<proto>://<username>:<password>@<host>/<database>";

NEW Format:

define("DATABASE_DSN", "<proto>:user=<username>;password=<password>;host=<host>;dbname=<database>");

The rest should be automatic~

If there are any errors with the upgrade process, in_upgrade=true will be left in the config table and the process will be paused for the admin to investigate.

Deleting this config entry and refreshing the page should continue the upgrade from where it left off.

Upgrade from earlier versions

I very much recommend going via each major release in turn (eg, 2.0.6 -> 2.1.3 -> 2.2.4 -> 2.3.0 rather than 2.0.6 -> 2.3.0).

While the basic database and file formats haven't changed completely, it's different enough to be a pain.

Custom Configuration

Various aspects of Shimmie can be configured to suit your site specific needs via the file data/config/shimmie.conf.php (created after installation).

Take a look at core/sys_config.inc.php for the available options that can be used.

Custom User Classes

User classes can be added to or altered by placing them in data/config/user-classes.conf.php.

For example, one can override the default anonymous "allow nothing" permissions like so:

new UserClass("anonymous", "base", array(
	"create_comment" => True,
	"edit_image_tag" => True,
	"edit_image_source" => True,
	"create_image_report" => True,
));

For a moderator class, being a regular user who can delete images and comments:

new UserClass("moderator", "user", array(
	"delete_image" => True,
	"delete_comment" => True,
));

For a list of permissions, see core/userclass.class.php

Development Info

ui-* cookies are for the client-side scripts only; in some configurations (eg with varnish cache) they will be stripped before they reach the server

shm-* CSS classes are for javascript to hook into; if you're customising themes, be careful with these, and avoid styling them, eg:

  • shm-thumb = outermost element of a thumbnail
    • data-tags
    • data-post-id
  • shm-toggler = click this to toggle elements that match the selector
    • data-toggle-sel
  • shm-unlocker = click this to unlock elements that match the selector
    • data-unlock-sel
  • shm-clink = a link to a comment, flash the target element when clicked
    • data-clink-sel

Documentation: http://shimmie.shishnet.org/doc/

Please tell me if those docs are lacking in any way, so that they can be improved for the next person who uses them

Contact

IRC: #shimmie on Freenode

Email: webmaster at shishnet.org

Issue/Bug tracker: http://github.com/shish/shimmie2/issues

Licence

All code is released under the GNU GPL Version 2 unless mentioned otherwise.

If you give shimmie to someone else, you have to give them the source (which should be easy, as PHP is an interpreted language...). If you want to add customisations to your own site, then those customisations belong to you, and you can do what you want with them.