https://github.com/monsterlane/codeigniter3-app
(Read More..)Rabu, 01 Januari 2014
Sabtu, 27 April 2013
Live Updates in CodeIgniter with Socket.IO and Redis
Selasa, 01 Januari 2013
Sabtu, 18 Agustus 2012
Minggu, 22 Juli 2012
Upgrading to CodeIgniter 2.x from CodeIgniter 1.7.x
Minggu, 15 Juli 2012
Minggu, 08 Juli 2012
Sabtu, 12 Mei 2012
Easy Package Management for CodeIgniter with Sparks
Remote Config Files In CodeIgniter
I ran into a situation recently where I had multiple CodeIgniter apps
which depended on the same config values. No problem, right? Just use a
common third_party folder. That would work, except they were on
different servers! My solution was to echo the config as JSON in one
place, grab the JSON in other apps and load them as config values. Now
you can do the same!
http://mikefunk.com/remote-config-files-in-codeigniter/
Jumat, 11 Mei 2012
Jumat, 04 Mei 2012
Ajax Framework For CodeIgniter
A very basic but powerful implementation of Ajax Framework that complements Codeigniter.
Download here:
Download From Google CodeCjax Framework separates your ajax controllers from your regular controllers. While your normal controllers reside in application/controllers, your ajax controllers will reside in application/response.
Install
Download and unzip the Ajax Framework package, then just overwrite everything from the zip into your CodeIgniter base installation (will not replace any of your files)Test
just go to:http://yoursite.com/ajax.php?controller=test&function=test
(replace http://yoursite.com with the base directory where your CodeIgniter installation resides)
To this point you are done, successfully installing and using Cjax, if the test above prints “Ajax View..”. You can find this text inside file application/views/test.php, and its controller in application/response/test.php.
Friendly URLS
Full support for friendly URLS.Friendly URLS are supported, but not required to use Cjax.
You may access your controllers in any of the following ways; these examples make use of controller file application/response/test.php.
//ajax.php?controller=$controller&function;=$functionajax.php?controller=test&function=test//ajax.php?$controller/$functionajax.php?test/test//ajax/$controller/$function
#This one requires mod_rewriteajax/test/test
Creating Controllers
Creating controllers works the same way as your regular controllers, except the class name of ajax controller start with the keyword “controller_”. For example, if you want to create a controller named test, then your class name would be “controller_test”.Example
application/response/test.php
class controller_test extends CI_Controller {
function test()
{
}
} Rabu, 02 Mei 2012
Image CRUD is an automatic multiple image uploader for Codeigniter. With the same philoshopy of grocery CRUD library. Just simple line of codes and you have all the functionality that you need.
http://www.web-and-development.com/image-crud-an-automatic-multiple-image-uploader-for-codeigniter/
Minggu, 29 April 2012
philsturgeon / codeigniter-restserver