Skip to content

videosambo/SankoForum

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

49 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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?