When you use command line to pull, push or clone code to your server, if you see this error: (gnome-ssh-askpass:13543): Gtk-WARNING **: cannot open display: To solve this, all you need to do is run the following command in the terminal: $ unset SSH_ASKPASS To prevent it in future, you can add the above line in Full Article…
Search the Wiki
Magento – Set custom title of the success page
If you want to change the title of the onepage success page. By default the text is "Magento Commerce", you can change it by following this way. Add this code in checkout.xml under checkout_onepage_success tag <reference name="head"> <action method="setData" translate="title"><key>title</key><value>your title </value></action> </reference>
Magento – “Item (Mage_Catalog_Model_Product) with the same id ”xxx“ already exist”
I have been getting this error when trying to filter a products collection Item (Mage_Catalog_Model_Product) with the same id "7631" already exist and wanted to ask what could ne causing the error since there is only one (visible) product with the same ID inside of Magento. ———————————————————– Here is the solution i did to solve the Full Article…
Magento – Change Product Type
Suppose you have created or Imported products into the Magento and now you want to change the products type like you have imported the products with the product type Downloadable and now you want this products from Downloadable to Simple then In the Magento admin there is no way to change the product type. If Full Article…
Centos – COMPLETE INSTALLATION OF VIRTUALMIN
Once your new server is provisioned , install Perl in it which stands as the base for all further installations. You can use the following command to install Perl : # yum install perl -y When this is complete, download the script to install Virtualmin : # wget http://software.virtualmin.com/gpl/scripts/install.sh Run the above script : # Full Article…
Magento – Force secure urls (https) on all frontend pages.
This solution works in Mageno 1.9.1. You need to update the app/etc/config.xml file <?xml version=”1.0″?> <config> <frontend> <secure_url> <all>/</all> </secure_url> </frontend> </config> If user is using https, this should force all urls to rewrite (created as) to https.
Ubuntu – BETTER FONT RENDERING IN LINUX WITH INFINALITY
Infinality is a set of Freetype patches that try to provide an improved font rendering for Linux and also, to allow easy customization so the users can adjust the settings to their taste. Using it,you can easily set the font style to emulate OSX, OSX2, Windows 98, WIndows XP or Windows 7 or you can Full Article…
Magento – How to set the tax configuration in the correct way
The following general fixes were made to Magento tax configuration and calculations: Canadian customers now receive an e-mail with the correct totals for invoices and credit memos that include Provincial Sales Tax (PST) and Goods and Services Tax (GST). Resolved issues with incorrect prices and incorrect tax amounts when a custom price is used together Full Article…
Magento – DIRECT SQL QUERIES IN MAGENTO
Magento’s use of data models provide a great way to access and modify data. Using aptly named methods and clever abstraction, Varien hide away the complex SQL needed to perform data operations. While this makes learning models easier, it often impacts the speed of the operation and therefore the responsiveness of your site. This is Full Article…
Magento – 101 ways to speed up
As you probably know by now, Google is Using site speed in web search ranking. And I couldn’t agree more: speed is important for your site, and not only for Google but mainly for the User Experience (UX) on your site. Research from Google and Microsoft shows that slower websites convert less and that the Full Article…