videosambo/sankoforum

There is no license information available for the latest version (dev-master) of this package.

A silly forum engine made by videosambo

dev-master 2020-09-13 22:06 UTC

This package is auto-updated.

Last update: 2022-01-14 01:29:08 UTC


README

GitHub GitHub release (latest by date) GitHub tag (latest SemVer pre-release) PHP from Packagist Libraries.io dependency status for GitHub repo GitHub issues

Sanko Forum

SankoForum is silly forum engine that is fully open source.

Demo https://forum.simpelecraft.tk

On work

  • Forum engine essentials
  • Basic adminstrator functions
  • Email verification
  • Recaptcha
  • Create sections, categoeies, topics and posts
  • Manage user information
  • Profile picture
  • Basic text formating
  • Support for languages
  • Support for themes
  • Basic configuration
  • Automatic SQL Database and table creation
  • Automatic update system
  • Instalation file with configuration
  • Automatic webserver configuration and support
  • Private messages
  • Bootstrap style
  • Custom error pages

SQL

  • Database

    • users
      • user_id
      • user_name
      • user_pass
      • user_date
      • user_email
      • email_token
      • email_verified
      • user_level
    • sections
      • section_id
      • section_name
      • section_description
    • categories
      • category_id
      • category_section
      • category_name
      • category_description
    • topics
      • topic_id
      • topic_subject
      • topic_date
      • topic_category
      • topic_by
    • posts
      • post_id
      • post_content
      • post_date
      • post_topic
      • post_by

    How to create database?