While using Adobe Dreamweaver many a times the short cuts ( Ctrl+b , Ctrl+i etc.) refuse to work. To solve follow the below steps – 1. Under Window top menu select Workspace Layout 2. Under Workspace Layout the different layouts are listed. Select a layout apart from the one used currently. Then again switch back… Continue reading Shortcuts Not Working In Dreamweaver
Category: Uncategorized
Handle Quotes In MySQL Query Using Zend Framework
When a value that needs to be inserted into database, contains a mix of ‘ and ” , problem will arise with normal MySQL query. We can handle the situation when using plain PHP with this solution. But if we are using Zend Framework the solution will be – $db = Zend_Db::factory(‘PDO_MYSQL’, $params);$sql =… Continue reading Handle Quotes In MySQL Query Using Zend Framework
Open And Convert CDR , PSD Files For Free
Many a times it happens that as the developer of a certain project you will get a PSD (Photoshop) or CDR (Coreldraw) file from either the designer or the client. And as a developer its more than possible that you wont be having software like Photoshop or Coreldraw installed in your desktop. So if you… Continue reading Open And Convert CDR , PSD Files For Free
Magento Format Price To Default Currency
Use the below code to format a price according to default currency in Magento $price = $_product->getPrice() /// This is in product details page. /// Replace it with necessary price value according to your requirement. $formatted price = Mage::helper(‘core’)->currency($price);
"Flex Library Not Loaded" Error In Magento
The Problem Image upload not working in Magento backend. Whenever entering product details getting an error alert saying Flex Library Not Loaded The Solution This happens due to improper Magento installation. Just give full permission to the following folder /js/lib That should solve the problem. Njoy 🙂
Magento :: Images Not Showing In Front End
It is a common issue in Magento. After uploading images from back end, the images are shown in back end, but are not displayed on the front end. To solve follow the below steps. Any one of them might solve the issue for you, or even you might need to apply all. Try your luck… Continue reading Magento :: Images Not Showing In Front End
Magento Customize Error Page
After spending a lot of time and energy creating a beautiful Magento theme, once you get an error somewhere, you would notice that you are shown the default vanilla Magento theme. Whats worse is that it still has the Magento logo!!!Actually the error page Magento shows is not placed inside the theme folder. To customize… Continue reading Magento Customize Error Page
Drupal Database Installation Problem Solved
While installing Drupal sometimes you might get stuck on the database configuration page. After entering the data and submitting, the page just reloads and nothing happens. Follow the below steps for the solution. 1. I know you have already done this step, but just to mention, please go through the database details once again and… Continue reading Drupal Database Installation Problem Solved
Zen Cart header_php File Not Updating
I faced a problem last day while updating the header_php.php file for one of the pages I created in Zen Cart. Even after making changes in the header_php file, the changes were not reflected when I viewed the page in browser. The header_php.php file is present in \includes\modules\pages\{page_name}\where {page_name} should be replaced by the name… Continue reading Zen Cart header_php File Not Updating
Magento :: How To Call Static Blocks From PHTML Pages
Magento offers the web master to put static contents where ever he likes in the site with the help of CMS -> Static Blocks. These blocks can be easily edited from the admin panel. To call and show their contents on any phtml file write the following code. echo $this->getLayout()->createBlock(‘cms/block’)->setBlockId(‘identifier’)->toHtml() ; Here identifier should be… Continue reading Magento :: How To Call Static Blocks From PHTML Pages