All Projects → ManuelGil → Simple-Social-Network

ManuelGil / Simple-Social-Network

Licence: MIT license
Micro Social Network developed in PHP, MySQL, BOOTSTRAP 3 and VUE.JS 2

Programming Languages

PHP
23972 projects - #3 most used programming language
hack
652 projects

Projects that are alternatives of or similar to Simple-Social-Network

Htaccess
✂A collection of useful .htaccess snippets.
Stars: ✭ 11,830 (+65622.22%)
Mutual labels:  apache, htaccess
Vue Cli Multipage Bootstrap
vue-cli-multipage-bootstrap demo with vue2+vue-router+vuex+bootstrap+markdown for learning vue2.0
Stars: ✭ 105 (+483.33%)
Mutual labels:  vue2, bootstrap3
Uiv
Bootstrap 3 components implemented by Vue 2.
Stars: ✭ 882 (+4800%)
Mutual labels:  vue2, bootstrap3
LAMPP-Manager
A simple LAMPP manager designed to automate all the work.
Stars: ✭ 117 (+550%)
Mutual labels:  apache, xampp
htpw
htpw is a project to increase the security of your WordPress!
Stars: ✭ 42 (+133.33%)
Mutual labels:  apache, htaccess
Apache-Directory-Listing
A directory listing theme for Apache
Stars: ✭ 138 (+666.67%)
Mutual labels:  apache, htaccess
Vuelidate Error Extractor
Vuelidate form-group helper that extracts errors easily.
Stars: ✭ 133 (+638.89%)
Mutual labels:  vue2, bootstrap3
Server Configs Apache
Apache HTTP server boilerplate configs
Stars: ✭ 2,916 (+16100%)
Mutual labels:  apache, htaccess
autoindex strapdown
Easily add Markdown README/HEADERs to Apache's directory indexes, rendered by Strapdown.js
Stars: ✭ 34 (+88.89%)
Mutual labels:  apache, htaccess
apachelogs
Parse Apache access logs
Stars: ✭ 19 (+5.56%)
Mutual labels:  apache
jQuery-Facebook-Stream
Display all your wall post, comments & likes in groups or fans page.
Stars: ✭ 24 (+33.33%)
Mutual labels:  social-network
JARR
JARR is a web news aggregator.
Stars: ✭ 99 (+450%)
Mutual labels:  atom
VisualTeensy
VisualCode projects for PJRC Teensy boards
Stars: ✭ 101 (+461.11%)
Mutual labels:  atom
wallstant
Create your own social network for free with Wallstant social network, easy to install and fast to use .. Make people connected
Stars: ✭ 157 (+772.22%)
Mutual labels:  social-network
vue3-chat
2021👨‍🎓Vue2/3全家桶 + Koa+Socket+Vant3前后端分离移动端聊天应用。vue+node全栈入门项目
Stars: ✭ 46 (+155.56%)
Mutual labels:  vue2
linter-elixirc
Atom Linter plugin for ElixirC
Stars: ✭ 14 (-22.22%)
Mutual labels:  atom
atom-ansible-vault
Atom package to create and modify ansible-vault file
Stars: ✭ 31 (+72.22%)
Mutual labels:  atom
panther
Estimating similarity between vertices is a fundamental issue in network analysis across various domains, such as social networks and biological networks. Methods based on common neighbors and structural contexts have received much attention....
Stars: ✭ 27 (+50%)
Mutual labels:  social-network
language-chef
Development repository for the language-chef plugin for the Atom text editor
Stars: ✭ 16 (-11.11%)
Mutual labels:  atom
AtomicWatch
Intel Atom C2000 series discovery tool that parses log files and returns results if a positive match is found. #nsacyber
Stars: ✭ 25 (+38.89%)
Mutual labels:  atom

Simple Social Network

Fav Quote is a Micro Social Network developed in PHP, MySQL (PDO_MYSQL Controller for the connection), Bootstrap 3 and Vue.JS 2. This project don't use classes or a php framework.

To validate the login forms uses the validator for bootstrap

🚥 Getting Started

This page will help you get started with Fav Quote (Simple Social Network).

Requirements

  • PHP 5.6
  • MySQL or MariaDB
  • Apache Server

Installation

Create a database

Run the following SQL script

-- -----------------------------------------------------
-- Schema NETWORK
-- -----------------------------------------------------
CREATE SCHEMA IF NOT EXISTS `NETWORK` DEFAULT CHARACTER SET utf8 ;
USE `NETWORK` ;

-- -----------------------------------------------------
-- Table `NETWORK`.`COUNTRIES`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `NETWORK`.`COUNTRIES` (
  `ID_COUNTRY` INT UNSIGNED NOT NULL AUTO_INCREMENT,
  `ISO` VARCHAR(2) NOT NULL,
  `COUNTRY` VARCHAR(80) NOT NULL,
  PRIMARY KEY (`ID_COUNTRY`))
ENGINE = InnoDB;


-- -----------------------------------------------------
-- Table `NETWORK`.`USERS`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `NETWORK`.`USERS` (
  `ID_USER` INT UNSIGNED NOT NULL AUTO_INCREMENT,
  `GUID` VARCHAR(20) NOT NULL,
  `USERNAME` VARCHAR(20) NOT NULL,
  `PASSWORD` VARCHAR(255) NOT NULL,
  `CREATED_AT` DATE NOT NULL,
  `ID_COUNTRY` INT UNSIGNED NOT NULL,
  PRIMARY KEY (`ID_USER`),
  UNIQUE INDEX `ID_USER_UNIQUE` (`ID_USER` ASC),
  UNIQUE INDEX `USER_UNIQUE` (`USERNAME` ASC),
  UNIQUE INDEX `GUID_UNIQUE` (`GUID` ASC),
  INDEX `fk_USERS_COUNTRIES1_idx` (`ID_COUNTRY` ASC),
  CONSTRAINT `fk_USERS_COUNTRIES1`
    FOREIGN KEY (`ID_COUNTRY`)
    REFERENCES `NETWORK`.`COUNTRIES` (`ID_COUNTRY`)
    ON DELETE NO ACTION
    ON UPDATE NO ACTION)
ENGINE = InnoDB;


-- -----------------------------------------------------
-- Table `NETWORK`.`QUOTES`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `NETWORK`.`QUOTES` (
  `ID_QUOTE` INT UNSIGNED NOT NULL AUTO_INCREMENT,
  `QUOTE` VARCHAR(120) NOT NULL,
  `POST_DATE` DATE NOT NULL,
  `POST_TIME` TIME NOT NULL,
  `LIKES` INT UNSIGNED NOT NULL DEFAULT 0,
  `ID_USER` INT UNSIGNED NOT NULL,
  PRIMARY KEY (`ID_QUOTE`),
  UNIQUE INDEX `ID_QUOTE_UNIQUE` (`ID_QUOTE` ASC),
  INDEX `fk_QUOTES_USERS_idx` (`ID_USER` ASC),
  CONSTRAINT `fk_QUOTES_USERS`
    FOREIGN KEY (`ID_USER`)
    REFERENCES `NETWORK`.`USERS` (`ID_USER`)
    ON DELETE NO ACTION
    ON UPDATE NO ACTION)
ENGINE = InnoDB;


-- -----------------------------------------------------
-- Table `NETWORK`.`LIKES`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `NETWORK`.`LIKES` (
  `ID_USER` INT UNSIGNED NOT NULL,
  `ID_QUOTE` INT UNSIGNED NOT NULL,
  PRIMARY KEY (`ID_USER`, `ID_QUOTE`),
  INDEX `fk_LIKES_QUOTES1_idx` (`ID_QUOTE` ASC),
  CONSTRAINT `fk_LIKES_USERS1`
    FOREIGN KEY (`ID_USER`)
    REFERENCES `NETWORK`.`USERS` (`ID_USER`)
    ON DELETE NO ACTION
    ON UPDATE NO ACTION,
  CONSTRAINT `fk_LIKES_QUOTES1`
    FOREIGN KEY (`ID_QUOTE`)
    REFERENCES `NETWORK`.`QUOTES` (`ID_QUOTE`)
    ON DELETE NO ACTION
    ON UPDATE NO ACTION)
ENGINE = InnoDB;

Create a project

  1. Clone or Download this repository
  2. Unzip the archive if needed
  3. Copy the folder in the htdocs dir
  4. Start a Text Editor (Atom, Sublime, Visual Studio Code, Vim, etc)
  5. Add the project folder to the editor

🎁 Donate!

If you want to help me to continue this project, you might donate via PayPal.

Donate via PayPal

📦 Deployment

Database Schema

schema

🔧 Built With

  • XAMPP for Windows 5.6.32 (XAMPP)
  • Visual Studio Code (VSCode)

💯 Running the tests

You can test a demo websites here.

ℹ️ Changelog

1.0.0-beta.6 (01/19/2019)

1.0.0-beta.5 (04/15/2018)

1.0.0-beta.4 (03/24/2018)

1.0.0-beta.3 (02/18/2018)

  • Language: HTML, PHP, JavaScript
    Requirements:
    • PHP 5.6
    • MySQL or MariaDB
    • Apache Server
    Features:
    Changes:
    • Add a new table in database to save likes
    • Add the profile page
    • Add the location for the persons

1.0.0-beta.2 (02/04/2018)

1.0.0-beta.1 (12/02/2017)

👓 Authors

See also the list of contributors who participated in this project.

📝 License

Fav Quote is licensed under the MIT License - see the MIT License for details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].