Current Version of Codefight CMS Available for Download:

            « Version 1.5.0 »

            NOTE: The code available is same as the code used for this site at the time of release.

            Codefight CMS is based on Codeigniter PHP Framework which is very easy to learn.

            It would be nice to hear back some feedback. Also you can contribute with code and helping translating language files in your language.

            You can use this CMS in anyway you want. You can modify as you like and use commercially for free.

 

 

Select Language.[TESTING For Next Release.]

English | नेपाली | French | German | Korean

Login | Select Language | Thu, 29 Jul 10 17:17:14 -0600

Meta noindex, nofollow added in Codefight CMS

2010-04-15 05:38:18Damodar Bashyal

 

Are Search Engines indexing your pages that have no content and you don't want them to be indexed and waste search engines visit to the page that have absolutely no value for your website? Then there is a simple solution meta noindex.

I was searching google to see how many pages of my sites are indexed and saw 25K pages. I was adding to many stuffs with less value. One of them was "On The Web" which was just a webstat of the sites out there. People started adding to many adult websites so i decided to close that section. I am planning it to move to zoosper. I thought that those pages were just wasting time of the search engine. So, I turned of stats and added noindex, nofollow.

That reduced the pages indexed in google. Now google will have time to visit my pages which i want it to visit more often and index.

After, few days of above update i started to see better result for codefight cms in search engines. But less in advertisement revenue though. I was making like $20-$30 per week from google adsense only. Now, it has gone down to $1 - $10 per week.

Now i have updated codefight cms to add meta noindex, nofollow to those pages which have no content like: http://codefight.org/page/index/sorry-i-have-no-content-to-display-for-you.html

So, I think in next few days google index will drop from 25K to less than 1K. But it will be easier for those people to find Codefight CMS who are looking for Free Codeigniter (CI) CMS.

If you are using Codefight CMS and want to add this option then you need to edit two pages.

app/frontend/views/templates/core/blocks/head.php and app/frontend/controllers/blog/page.php

On page.php update:

More»

 

How to undo cancel of an order which was canceled by mistake?

2010-05-16 06:00:33Damodar Bashyal

 

I mistakenly canceled one order and spent a day to go through magento & different forums and blogs and searching for a solution and this is how i fixed myself after few tries. I am still not sure how to extend the controller so i modified the core file and made a copy so i can paste back if overwritten when upgrade or i can copy when i find the solution how to extend or override a magento controllers.

Create a file @ app\code\local\Codefight\Adminhtml\Block\Sales\Order\Grid.php

More»

 

Adding new field in category section of magento ecommerce

2010-04-22 23:39:24Damodar Bashyal

 

How to add new fields in magento e-commerce?

There is no easy method like adding product attribute for category yet. But we can achieve this by adding from database. You just need to deal with three tables in the database.

First one is: eav_attribute

Insert details as: [change as you need]

More»