Skip to content

BrodieBirko/website_files

 
 

Repository files navigation

Joe-abdo

A simple attempt to create an open source social media platform

Setup

Server:

  • Apache
  • Database client version: libmysql - mysqlnd 5.0.12-dev
  • PHP extension: mysqli curl mbstring
  • PHP version: 7.3.2
    don't forget to edit the bj.php and connect.php to fit your domain and database :) SQL:
CREATE TABLE `table1` (
 `id` int(11) NOT NULL AUTO_INCREMENT,
 `file` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
 `image` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
 `width` int(11) DEFAULT NULL,
 `height` int(11) DEFAULT NULL,
 `posted_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
 `handle` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
 `profile` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
 `date` date NOT NULL,
 `time` time NOT NULL,
 PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
CREATE TABLE `users` (
 `id` int(11) NOT NULL AUTO_INCREMENT,
 `username` varchar(50) NOT NULL,
 `handle` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
 `profile` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
 `password` varchar(255) NOT NULL,
 `created_at` datetime DEFAULT current_timestamp(),
 PRIMARY KEY (`id`),
 UNIQUE KEY `username` (`username`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4

Copyright info

This project is licensed under the terms of the MIT license.
In other words: you can do whatever you want with this code, I don't fucking care.

About

open source social media platform.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 54.9%
  • Hack 28.8%
  • CSS 16.3%