Installing cURL ubuntu for PHP
For Installing CURL ubuntu for php server, we have to apply sudo apt-get install php5-curl After Installation is completed restart Apache server
Magento Disable System Cache
For, Clear cache of Magento while development time. We have to follow those steps Login to admin side of Magento System >> Cache Management. Select the check boxes next to Layouts, Blocks HTML output and Translations and then under Actions select Disable and click Submit. Each of those Cache Types should have a red bar […]
Magento theam blocks and layouts details
Here are some description of tools we need to remember to be a successful design in Magento Structural Blocks Content Blocks Layout Structural Blocks This blocks are using for the assigning visual structure of a page such as header, left column, main column and footer. Content Blocks These blocks are showing the actual content […]
Magento theme fallback workflow
Magento has always used fallback logic in rendering themes, An example of how Magento fallback logic works is, if your custom theme calls for a CSS file named “styles.css,” but the Magento application is unable to find the file in your custom theme, Magento will search the next theme in the hierarchy for the file […]
Magento admin login issue
I found Magento login issue, while first time installation of Magento We need to change following files in to Magento file system. {folder path}/app/code/core/Mage/Core/Model/Session/Abstract inside this folder we found “Verient.php”. Open “Verient.php” and make change from $cookieParams = array( ‘lifetime’ => $cookie->getLifetime(), ‘path’ => $cookie->getPath(), ‘domain’ => $cookie->getConfigDomain(), ‘secure’ => […]