Coder Social home page Coder Social logo

antelove19 / build-a-cms-with-codeigniter Goto Github PK

View Code? Open in Web Editor NEW

This project forked from joostvanveen/build-a-cms-with-codeigniter

0.0 2.0 0.0 1.28 MB

Source code for the Tutsplus course 'Build a CMS with Codeigniter'

PHP 98.50% HTML 0.27% Hack 0.01% CSS 0.14% JavaScript 1.09%

build-a-cms-with-codeigniter's Introduction

Build A CMS With Codeigniter

This is the source code for the Tutsplus course Build A CMS With Codeigniter.

Note that it uses Codeigniter version 2.1.2. The code is not fully compatible anymore.

Know issues

Bugfixes

There were a few bug fixes, amongst which an issue where an empty password was saved into the database. See commits for those fixes.

$this->db->ar_orderby has become obsolete in Codeigniter V3

application/core/MY_Model.php uses a hack using this code to add order by statements:

if (!count($this->db->ar_orderby)) {
    $this->db->order_by($this->_order_by);
}

In Codeigniter V3, $this->db->ar_orderby has been replaced by $this->db->qb_orderby, which has become a protected property. You cannot use it anymore. However, $this->db->order_by now adds to order by instead of replace it. So for V3 you should be fine doing:

$this->db->order_by($this->_order_by);

build-a-cms-with-codeigniter's People

Contributors

joostvanveen avatar

Watchers

James Cloos avatar Falah Al Fitri avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.