Tag: setup

  • Codeigniter-Doctrine migration from Windows to Linux

    Before I begin, Codeigniter is a php framework that implements the Model-View-Controller design architecture. Doctrine is an Object Relational Mapper and a powerful Database Abstraction Layer built on top of php. Doctrine handles all, if not most, database commands such as create, read, update and delete. I have first started working with Doctrine and Kohana…

  • The Port 80 – what service is using it and how to make it available

    I stumbled upon this problem this morning when I was trying to activate my apache but was being hindered by a “Port 80 Unavailable” issue. Upon installing apache you usually use port 80 which is the standard HTTP port on any platform. What you have to do is check the port in use and what…

  • Doctrine in Kohana

    I’ve been using kohana and its query builder for a while now – its good but in time I came to notice that I begin rewriting code over and over again so I tried to break out of the kohana-database shell and tried out existing ORM frameworks. If you’re curious about ORM check here – http://en.wikipedia.org/wiki/Object-relational_mapping.…