RSS

Magento Rename Admin Path After Installation


Magento rename admin path

Changing admin path name is one of the important steps to secure your magento store.There is an option to change default admin path during installation.But you can also rename admin path after installation.

To rename admin path,

Goto to /app/etc and  open local.xml file.

Find the text ![CDATA[admin]] in the file(around line no.57).This is the default admin path.

Change admin name to some other name like mystore and save it.

So it will look like ![CDATA[mystore]] and admin url will be

http://www.your-domain.com/mystore

——————

For Magento 1.4.1.1

 

 
Leave a comment

Posted by on January 24, 2011 in Magento

 

Tags: , , , , , , , ,

சென்னை அன்றும் இன்றும்-3


சென்னை (1980)
சென்னை (2010)
கரும்பு ரூ. 1 ரூ. 15
பச்சரிசி 1 கிலோ ரூ. 4.50 ரூ. 40
கருப்பட்டி 1 கிலோ ரூ. 3 ரூ. 60
வாழைப்பழம்(2) ரூ. 0.50 ரூ. 4
வெல்லம் 1 கிலோ ரூ. 6.50 ரூ. 45
மஞ்சள்கொத்து ரூ. 0.50 ரூ. 25
பொங்கல் பானை(2 கிலோ அளவு) ரூ. 2 ரூ. 30
நாட்டுச் சக்கரை 1 கிலோ ரூ. 5 ரூ. 40
முந்திரி 100 கிராம் ரூ. 8 ரூ. 45
திராட்சை 100 கிராம் ரூ. 5 ரூ. 20

நன்றி:அவள் விகடன் இதழ்

 
Leave a comment

Posted by on January 14, 2011 in Observations

 

Tags: , , , , , , , , , , , ,

Begin Wamp Server At Startup


Go to Control Panel->Administrative Tools-> Services.

Right click wampapache,wampmysqld and select properties.

Change Startup Type from Manual to Automatic

 

 
Leave a comment

Posted by on January 13, 2011 in PHP

 

Tags: , , , , , , ,

Magento Remove Currency Selector


Go to app/design/frontend/{Your Interface}/{Your theme}/layout/directory.xml
Find the code around line no 44 that looks like this

    <catalog_category_layered>
        <reference name="left">
            <block type="directory/currency" name="currency" before="catalog.leftnav" template="directory/currency.phtml"/>
        </reference>
    </catalog_category_layered>

Comment the code

——————

For Magento 1.4.1.1

 
Leave a comment

Posted by on January 12, 2011 in Magento

 

Tags: , , , , , , , ,

I Point To India


Max Muller,a German philologist  was invited by Cambridge University to give lecture to British candidates  preparing for Indian civil service,he spoke,

…What i feel convinced of, and hope of convince you, is that sanksrit language, if studied in right spirit, is full of human interests, full of lessons which even Greek could never teach us, a subject worthy to occupy the  leisure, and more than the lesiure, of every Indian civil servant.

If i were to look over the whole world to find out the country most richly endowed with all the wealth, power and beauty and the nature can bestow- in some parts a very paradise on earth – i should point to India.If i were asked under  what sky human mind has developed some of its choicest gifts, has most deeply pondered on the greatest problems of life, and has found the solutions of some of them which well deserve the attention  even of  those studied Plato and Kent – i should point to India

 
1 Comment

Posted by on December 23, 2010 in Observations

 

Tags: , , , , , , , ,

Magento Blank Theme Installation Problem


After installing blank theme in magento,an error will appear like this,

Fatal error:Call to a member function toHtml() on a non-object in /app/code/core/Mage/Core/Model/Layout.php on line 529

To fix this error,go to /app/design/frontend/default/blank/layout/ and open page.xml file.

Find the code around line no 89, which looks like this,

<block type="core/profiler" output="toHtml" />

Change it to

<block type="core/profiler" output="toHtml" name="core_profiler"/>

 
Leave a comment

Posted by on December 21, 2010 in Magento, PHP

 

Tags: , , , , , , , ,

சென்னை அன்றும் இன்றும்-2


சென்னை (1990)
சென்னை (2010)
இட்லி (2) ரூ.1 ரூ.10
வடை 30 பைசா ரூ.5
தோசை ரூ 1.50 ரூ 12
மசால்தோசை ரூ 2.00 ரூ 16
வடைகறி 60 பைசா ரூ 10
சப்பாத்தி ரூ 2.50 ரூ 18
பரோட்டா ரூ 2 ரூ 16
பொங்கல் ரூ 2 ரூ 14
பூரி(கிழங்கு) ரூ 1.50 ரூ 14
டீ 60 பைசா ரூ 6
காபி ரூ 1.50 ரூ 14

நன்றி:அவள் விகடன் இதழ்

 
Leave a comment

Posted by on November 28, 2010 in Observations

 

Tags: , , , , , , , , , ,

Magento-Move Newsletter From Left To Right


Go to app/design/frontend/{Your interface}/{Your theme}/layout\newsletter.xml

Find the code that looks like this

<default>
<!-- Mage_Newsletter -->
<reference name="left">
<block type="newsletter/subscribe" name="left.newsletter" template="newsletter/subscribe.phtml"/>
</reference>
</default>

Change reference name from left to right

<default>
<!-- Mage_Newsletter -->
<reference name="right">
<block type="newsletter/subscribe" name="left.newsletter" template="newsletter/subscribe.phtml"/>
</reference>
</default>

——————
For Magento 1.4

 
Leave a comment

Posted by on November 25, 2010 in Magento

 

Tags: , , , , , , ,

Magento-Display Shopping Cart in Header


Go to app\design\frontend\base\default\template\page\html\header.phtml
Add the following code inside the header-container div to display total number of  items and price in header .

<?php
  $count = $this->helper('checkout/cart')->getSummaryCount();  //get total items in cart
  $total = $this->helper('checkout/cart')->getQuote()->getGrandTotal(); //get total price
  if($count==0)
  {
    echo $this->__('Items: %s',$count);
  }
  if($count==1)
  {
    echo $this->__(' Item: %s',$count);
  }
  if($count>1)
  {
    echo $this->__(' Items: %s',$count);
  }
  echo $this->__(' Total: %s', $this->helper('core')->formatPrice($total, false));
?>

——————
For Magento 1.4

 
4 Comments

Posted by on November 24, 2010 in Magento

 

Tags: , , , , , , , , , , ,

Not My Cup Of Tea!


Corruption GovermentCorruption,corruption and more corruption!!!!……..Corruption becoming ever unfolding story in India.Corruption list-IPL,CWG,adharsh,2g spectrum,yeddyurappa land scam and more.Corruptions are at all levels of India from army,politicians, judges,bureaucrats,corporates to even individual.Law makers instead of addressing the loop holes of judicial system,they making use of loopholes for their benefits.Each scam ends only with resignation.Country never going to get the money back that lost in the scam.Over the years Indian politics become money for jam. Our nation has lost faith  in our politicians because they play fast and loose.Before freedom,British came as traders and robbed the nation.After freedom, people become politicians and robbing the nation.

In current system,any person who is a citizen of India can be a chief minister.But if  somone want to be  IAS officer,he need to pass different exams.To administer a small area like district,one need to study and pass exams.But to be chief minister,one must give bottle of liquor and saree.What  a ridiculous rule!!!.In other nations, sport persons competing in national level to qualify and  play in international level.But in India,sport persons competing with bureaucrats to qualify at the national level.

Enough is enough.Its need of the hour to eradicate corruption in our country.For that we need to change our judicial system.Make a law so that only qualified people can only be lawmakers.Law must educate the politicians about their roles.Make law stringent so that  people in power must afraid to misuse their power.With corruption at all levels,India’s vision to be a super power is light years behind!!

 
Leave a comment

Posted by on November 19, 2010 in India

 

Tags: , , , , , , , , , ,

 
Follow

Get every new post delivered to your Inbox.