"Lit the Candle"

Translation of “Agar hum kahen aur wo muskura dein”

Agar Hum Kahen Aur Woh Muskura Den

Artist: Jagjit Singh
Album: Passions – Black Magic

Agar hum kahen aur wo muskura dein
if i be somewhere and she smiles for me.
Hum unke liye zindgaani luta dein
i would give-up my life for her.

Har ik mod par hum gamon ko sazaa dein
on every turn of life i would punish the sorrows.
Chalo zindagi ko mohabbat bana dein
Come on let’s make our life our love.

Agar khud ko bhoole to kuch bhi na bhoole
if i forget myslf, means i forgot nothing.
Ke chaahat mein unkee khuda ko bhula dein
Rather i would forget god in her love.

Kabhi gam kee aandhee jinhen choo na paaye
may d blind sorrow never touch her.
Wafa ke hum wo nashe-man bana dein
make me addicted to goodwill of hers.

Qayaamat ke deewaane kehte hain humse
lovers of beauty tells me to.
Chalo unke chehre se parda hata dein
unveil the curtain from her face.

Saza de silaa de, bana de mitaa de
punish me.. Judge me, make it… Erode it.
Magar wo koi faislaa to sunaa de
but at least give some judgment.

Translated By: TarakNath kar

July 27, 2009 Posted by milansaha | Song Lyrics | | 1 Comment

How to remove callout section from magento?

For the modification of this block there are two ways in magento layout. They are pretty simple. Just try to follow the steps below.

1.To remove left callout follow the following steps:

  • Open app/design/frontend/default/default/layout/catalog.xml
  • Search for col_left_callout (default line 53)
  • Remove all of the following code:
<reference name=”left”>
<block type=”core/template” name=”left.permanent.callout” template=”callouts/left_col.phtml”>
<action method=”setImgSrc”><src>images/media/col_left_callout.jpg</src></action>
<action method=”setImgAlt” translate=”alt” module=”catalog”><alt>Our customer service is available 24/7. Call us at (800) DEMO-NUMBER.</alt></action>
<action method=”setLinkUrl”><url>checkout/cart</url></action>
</block>
</reference>

2.Or To remove right callout you can follow the following steps:

  • Open app/design/frontend/default/default/template/callouts/right_col.phtml
  • Remove all of the following code:

<div class=”box”>
<img src=”<?php  echo $this->getSkinUrl(‘images/media/col_right_callout.jpg’) ?>” width=”195″
alt=”<?php echo __(‘Keep your eyes open for our special Back to School items and save A LOT!’) ?>”
style=”display:block;” />
</div>

July 6, 2009 Posted by milansaha | Magento | | No Comments Yet

Changing the www root directory of Apache server in wamp ?

When it’s necessary to change your current www root folder to another folder,it needs some changes in your apache configuration file.

The file which is responsible for Apache configuration is called httpd.conf. if u already stared your wamp server, you will see wamp icon on start up.To get accees to httpd.conf file just click on the wamp icon then go to config files and select httpd.conf. WAMP provides quick access to certain important files, one of them being httpd.conf.

Now follow the steps below :

  • Find the documentroot in the file.
  • You should find a line that looks like DocumentRoot “C:/Program Files/wamp/www/”.
  • Copy that line then put a # in front of it: #DocumentRoot “C:/Program Files/wamp/www/”.
  • We put the # character to comment this line.
  • Now paste this line and customize the root folder(www) path to  DocumentRoot “D:/Projects/”In this case let us assume that the root folder is in the “Projects” folder of your “D” drive.
  • If you search again as above you’ll find another line like: <Directory “C:/Program Files/wamp/www/”>.
  • Again copy the line, put a # in front, paste copied line below and adjust it to  <Directory “D:/Projects/”.
  • Now save the file and restart your Apache server to make the changes in action.

Hope it works :D

July 3, 2009 Posted by milansaha | Apache | | No Comments Yet