Mar 14, 2012

PHP Error Handling and Magento Developer Mode

You have installed new module but Magento is not executing your code neither throwing any error just try to run Magento in developer mode.
You can turn on the developer mode in .htaccess file or index.php by adding the below line

#File: .htaccess
SetEnv MAGE_IS_DEVELOPER_MODE “”
or
#File: index.php
if (isset($_SERVER['MAGE_IS_DEVELOPER_MODE'])) {
Mage::setIsDeveloperMode(true);
}

This will ensure that Magento will throw exception even for Warning and Notices
Please visit link for more detail: http://alanstorm.com/magento_exception_handling_developer_mode



Magento: API / web service work Example

Magento has strong web service features. I can say Magento’s web service is one step ahead than others e-commerce. Magneto has soap, v2_soap(soap 2) and xmlrpc adapter facilities. Using magento web services you can synchronize customer, categories, products, orders etc data with existing stores. Here I am going to describe magento’s web service deals step by step.

For more details and example Please visit below link:


http://magento4u.wordpress.com/2009/07/28/magento-api-web-service-work/

PO, Fresher Jobs In Bank of Maharashtra


Bank of Maharashtra

Bank of Maharashtra Eligibility Criteria for Probationary Officer Recruitment 2012
Bank of Maharashtra, with head office in Pune, is going to recruit 457  PO in its branches located at different places in India on permanent basis. For which, ONLINE Applications are invited from those Graduate candidates who posses a valid Score Card which has been issued by IBPS for PO / MT CWE for the year 2011-12. Interested candidates who want to apply against this recruitment are required to go through the following eligibility criteria stipulated by Bank of Maharashtra.


Please click here for more details: http://www.sarkari-naukri.in/jobs-by-state/jobs-in-maharashtra/jobs-in-bank-of-maharashtra.html

Magento: Add categories with images on homepage

Follows the below steps to displaying all categories with images on homepage:


Step1 : Add the code below to your homepage content from admin cms-> pages.

{{block type="catalog/navigation" name="catalog.category" template="catalog/category/list.phtml"}}

Step2:Create a list.phtml file under “/app/design/frontend/yourpackage/yourtheme/template/catalog/category/list.phtml” and add the below given code :

<?php foreach ($this->getStoreCategories() as $_category): ?>
<?php $open
= $this->isCategoryActive($_category); ?>
<?php
$cur_category
=Mage::getModel('catalog/category')->load($_category->getId());
$layer = Mage::getSingleton('catalog/layer');
$layer->setCurrentCategory($cur_category);
if (
$immagine = $this->getCurrentCategory()->getImageUrl()):
?>
<div style="float: left; padding-right: 30px; text-align: center;">
<
div class="linkimage">
<
p>
<
a href="<?php echo $this->getCategoryUrl($_category)?>">
<
img src="<?php echo $immagine ?>" alt="<?php echo $this->htmlEscape($this->getCurrentCategory()->getName()) ?>" width="135" height="135" />
<?php echo $_category->getName()?>
</a>
</
p>
</
div>
</
div>
<?php endif; ?>
<?php
endforeach; ?>



Step3: Clear Cache.


Step4: Done.

Mar 9, 2012

Operator-Cum-Technicial(Trainee)-SAIL SHINE filled up wrong journal number


If you have filled up wrong journal number by mistakes then no need to worry

just leave that old form and fillup the new form with the new email ID and your form will be submitted 
without any issue. I have confirmed it with the customer care of the sail.shine operator.

Operator-Cum-Technician(Trainee) - SAIL


For any queries regarding filling up of application form kindly contact on Helpline nos. : 011-66561560 and 0120-6450753

Magento : Installing Free Extensions Without Magento Connect Manager





If you don't have Magento connect manager on your current Magento version.

Just follows the below steps:

1) Search the free extension which you want from the Magento connect site
(http://www.magentocommerce.com/magento-connect/) and then find the extension key.

2) Open your FTP File Zilla and fillup the below credentials:

Host:connect20.magentocommerce.com
User: anonymous
Pass: (No password required
You will be connected to the Magento community FTP.

3) Now just navigate to folder /community/Your Extension Folder Name or Ext Key and download the zip format of your extension.


Mar 5, 2012

Magento: What is UPDATE XML tag

Handles are the moduler form of layout xml, Suppose if we have handle1 and handle2.

example:

<layout>
   <
 Handle1 >
      <!-- 
Handle1 layout content #1 -->
      
<update handle="handle2/>
   </
Handle1 >
   <
 Handle2 >
      <!-- 
Handle2 layout content #2 -->
   
</Handle2 >
</
layout>


That means you have:


<layout>
   <
Handle1>
      <!-- 
Handle1 layout content #1 -->
      
<!-- Handle2 layout content #2 -->
   
</Handle1>
</
layout>

Merge Handle2 contents with the Handle1 layout xml..