Codeigniter Admin Panel

A CodeIgniter template with an administrator panel using twitter bootstrap.
Alternatives To Codeigniter Admin Panel
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
X Editable6,464
4 months ago622mitJavaScript
In-place editing with Twitter Bootstrap, jQuery UI or pure jQuery
Bootstra.3866,247
4 months ago1May 09, 201860apache-2.0HTML
A vintage 1980s DOS inspired Twitter Bootstrap theme
Jquery Ui Bootstrap5,486
45 years agoMarch 15, 201549HTML
A jQuery UI theme based on Twitter Bootstrap
Twitter Bootstrap Rails4,51819,17986a year ago44February 06, 201758HTML
Twitter Bootstrap for Rails 6.0, Rails 5 - Rails 4.x Asset Pipeline
Bootstrap Tour4,4101082a year ago12October 03, 2017186mitCoffeeScript
Quick and easy product tours with Twitter Bootstrap Popovers
Ace3,561
3 years ago34otherHTML
Twitter bootstrap 3 admin template
Bootstrap Multiselect3,55982218 months ago4August 01, 2021290otherHTML
JQuery multiselect plugin based on Twitter Bootstrap.
Bootmetro2,244
15 years agoMay 15, 201338otherHTML
Simple and complete web UI framework to create web apps with Windows 8 Metro user interface, based on Bootstrap 2.
Geo Bootstrap1,934
7 years agoFebruary 22, 202133mitHTML
A timeless Twitter Bootstrap theme built for the modern web.
Bootstrap 3 Typeahead1,67311482 years ago3September 27, 2016180JavaScript
The Typeahead plugin from Twitter's Bootstrap 2 ready to use with Bootstrap 3 and Bootstrap 4
Alternatives To Codeigniter Admin Panel
Select To Compare


Alternative Project Comparisons
Readme

CodeIgniter-Sample-Project

Sample administrator panel using CodeIgniter 2.1.2 with Mysql and Twitter Bootstrap.

READ IT FIRST!!!: Guys, i've made this project with the idea to help the community, the idea was to receive suggestions and grow the project along with the community.

Unfortunately (or not) one week after i did this project, i started to work with Ruby and Rails, and kind of did left the php and this project as well. It's too sad check the project one year after its creation and see lots of issues without a single pull request...

Issues are a great opportunity to join and contribute to open source as well help the project to grow. There are some issues with the fix in the comment but no pull requests..

So please... make yourself comfortable to help!

Requirements

Functionalities:

  • Signup/Login/Logout
  • Create, insert, edit and delete products
  • Create, insert, edit and delete manufacturers
  • All forms with back end validation
  • List data content with pagination, search, and filters
------------------------------------------------------------------

Screenshots


Instructions

  • Setup your database in application/config/database.php
  • Dump the mysql at the bottom of this readme
  • Change $config['base_url'] in application/config/config.php
  • Access your project url
  • Signup and enjoy!

Mysql Dump

CREATE TABLE `ci_cookies` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `cookie_id` varchar(255) DEFAULT NULL,
  `netid` varchar(255) DEFAULT NULL,
  `ip_address` varchar(255) DEFAULT NULL,
  `user_agent` varchar(255) DEFAULT NULL,
  `orig_page_requested` varchar(120) DEFAULT NULL,
  `php_session_id` varchar(40) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

CREATE TABLE `ci_sessions` (
  `session_id` varchar(40) NOT NULL DEFAULT '0',
  `ip_address` varchar(45) NOT NULL DEFAULT '0',
  `user_agent` varchar(120) NOT NULL,
  `last_activity` int(10) unsigned NOT NULL DEFAULT '0',
  `user_data` text NOT NULL,
  PRIMARY KEY (`session_id`),
  KEY `last_activity_idx` (`last_activity`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

CREATE TABLE `manufacturers` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

CREATE TABLE `membership` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `first_name` varchar(255) DEFAULT NULL,
  `last_name` varchar(255) DEFAULT NULL,
  `email_addres` varchar(255) DEFAULT NULL,
  `user_name` varchar(255) DEFAULT NULL,
  `pass_word` varchar(32) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

CREATE TABLE `products` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `description` varchar(40) DEFAULT NULL,
  `stock` double DEFAULT NULL,
  `cost_price` double DEFAULT NULL,
  `sell_price` double DEFAULT NULL,
  `manufacture_id` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

Popular Bootstrap Projects
Popular Twitter Projects
Popular Web User Interface Categories

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Php
Mysql
Bootstrap
Twitter
Codeigniter
Signup
Twitter Bootstrap