Feed and sitemap generation Part II

Posted by Damodar Bashyal on March 14, 2009

 

This is part II of: Feed and sitemap generation Part I

I hope you were success in creating feed url and were very excited as i was.

I am working on this from long time as a part time after work and on weekends. I hope one day it will be in a condition when i'll be proud to release and be very excited for the contribution to the community. But for now i am thinking to pause uploading new files to google code but write few posts on new updates. This will help anyone to install new feature and understand what's going on.

More»

Feed and sitemap generation Part I

Posted by Damodar Bashyal on March 14, 2009

 

I am so excited to learn codeigniter more and more everyday through the means of my own new cms 'CodeFight CMS'. As i keep learning and implement new things in my CMS, i will keep posting here.

More»

New Codefight Asset Manager a codeigniter library

Posted by Damodar Bashyal on March 14, 2009

 

Today i wrote new asset manager for my cms by taking ideas from contributions on codeigniter. This is very useful for my cms. I am going to modify more in the future as i have time. But for now i would like to show how it works.

STEP 1:

I have a config file called MY_config. And, i autoload this config on config/autoload.php

<?php
$autoload['config'] = array('MY_config');
?>

Also, i autoload my new library in this file, along with other libraries as:

More»