All Projects → socialigniter → socialigniter

socialigniter / socialigniter

Licence: other
This is core install of social igniter application. Please follow the Readme below

Programming Languages

PHP
23972 projects - #3 most used programming language
javascript
184084 projects - #8 most used programming language
CSS
56736 projects
perl
6916 projects

Projects that are alternatives of or similar to socialigniter

codeigniter-image-magician
🎨 An ImageMagick library for CodeIgniter.
Stars: ✭ 13 (-83.33%)
Mutual labels:  codeigniter
sample-oauth2-client
Sample OAuth2 client using the GitHub API
Stars: ✭ 69 (-11.54%)
Mutual labels:  oauth
instagram-oauth-nodejs-server
Node.js server for Intagram-API OAuth purpose.
Stars: ✭ 12 (-84.62%)
Mutual labels:  oauth
passport-oauth1
OAuth 1.0 authentication strategy for Passport and Node.js.
Stars: ✭ 23 (-70.51%)
Mutual labels:  oauth
codeigniter-alert
An easy flashdata alert for codeigniter
Stars: ✭ 20 (-74.36%)
Mutual labels:  codeigniter
Codeigniter-blockchain
A library to use the Blockchain Wallet API: https://blockchain.info/api/blockchain_wallet_api
Stars: ✭ 19 (-75.64%)
Mutual labels:  codeigniter
erlang-oauth
An Erlang OAuth 1.0 implementation
Stars: ✭ 298 (+282.05%)
Mutual labels:  oauth
firebase auth oauth
A Flutter plugin that makes it easy to perform OAuth sign in flows using FirebaseAuth.
Stars: ✭ 28 (-64.1%)
Mutual labels:  oauth
GoInstaller
GoInstaller is installer for CodeIgniter with user interface (UI).
Stars: ✭ 31 (-60.26%)
Mutual labels:  codeigniter
GithubApp-android-architecture
Let's learn a deep look at the Android architecture
Stars: ✭ 16 (-79.49%)
Mutual labels:  oauth
Slack
[READ ONLY] Subtree split of the SocialiteProviders/Slack Provider (see SocialiteProviders/Providers)
Stars: ✭ 11 (-85.9%)
Mutual labels:  oauth
FusionCMS
A CMS for World of Warcraft private servers
Stars: ✭ 18 (-76.92%)
Mutual labels:  codeigniter
codeigniter-tettei-apps
『CodeIgniter徹底入門』のサンプルアプリケーション(CodeIgniter v3.1版)
Stars: ✭ 26 (-66.67%)
Mutual labels:  codeigniter
ApigilityConsumer
🍃 Zend Framework/Laminas and Expressive/Mezzio Apigility/Laminas API Tools Client Module to consume API Services
Stars: ✭ 15 (-80.77%)
Mutual labels:  oauth
oauth-example
Example of how to use Netlify OAuth Applications
Stars: ✭ 36 (-53.85%)
Mutual labels:  oauth
codeigniter-react-boilerplate
A CodeIgniter boilerplate with React.
Stars: ✭ 35 (-55.13%)
Mutual labels:  codeigniter
guile-oauth
OAuth module for Guile
Stars: ✭ 19 (-75.64%)
Mutual labels:  oauth
Twitch
[READ ONLY] Subtree split of the SocialiteProviders/Twitch Provider (see SocialiteProviders/Providers)
Stars: ✭ 20 (-74.36%)
Mutual labels:  oauth
ExpressPHP-V1
✨ ExpressPHP V1是一个极简的 web 开发MVC框架,和ThinkPHP5一样现代化,比CodeIgniter还要轻量级,真正突破框架限制,让你感受到自由,同时兼顾高性能、低学习成本。
Stars: ✭ 13 (-83.33%)
Mutual labels:  codeigniter
oauth-aspnet
An ASP.NET Core compatible port of the OAuth Authorization Server Middleware from Microsoft's Project Katana (Microsoft.Owin.Security.OAuth)
Stars: ✭ 25 (-67.95%)
Mutual labels:  oauth

Social-Igniter Core

This is the Core install of Social-Igniter. This repository contains all you need to get an install node up and running on your own *AMP webserver.

To check out a working install of Social-Igniter go to: http://social-igniter.com

General Installation Instructions

  • Download or Clone this repository (core Social-Igniter)

  • Place Download or Clone in your web servers directory

  • Download or Clone https://github.com/socialigniter/system (core CodeIgniter)

    • Make sure /system directory lives at the same folder level as the your app (core Social-Igniter)
    • If not you will need to edit $system_path = '../system'; in the index.php file to point to wherever your 'system' folder exists
  • Create a MySQL database & database user with your hosting database tool (cPanel, Plesk, etc...)

  • Navigate to the following URL at the domain you setup http://domain-name.com/install.php

  • Walk through all the steps

  • Voila, you should have a working install of Social-Ingiter

  • Submit any bugs or fork & send a pull request =)

Apache Installation Instructions

  • Create a Virtual Host or route for to this folder (e.g. http://domain-name.com)
  • Make sure you mod_rewrite intalled and loaded in Apache

NGINX Installation Instructions

  • Install the following code in your Server Block

    server { listen 80; server_name example.dev; root /Users/aaronpk/Code/social-igniter;

    try_files $uri /index.php?$args;
    
    location ~ \.php$ {
          fastcgi_pass    unix:/tmp/php-fpm.sock;
          fastcgi_index   index.php;
          include fastcgi_params;
          fastcgi_param   SCRIPT_FILENAME $document_root$fastcgi_script_name;
    }
    

    }

Documentation

To see documentation for Social-Igniter go to: https://github.com/socialigniter/socialigniter/wiki

REST API Methods & Calls

To see documentation on the API go to: http://social-igniter.com/api

Apps

There are a whole bunch of modules (blog, facebook, twitter, etc...) that are in various states of construction to see a full list go to: http://social-igniter.com/pages/apps

License

Copyright 2012 by Social-Igniter.com and contributors MIT License, CodeIgniter License

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].