It's a common question that we receive here at Mailgun. To ensure connectivity to our Simple Mail Transfer Protocol (SMTP) endpoint, Mailgun offers multiple port options, but which one should you use? Let's first take a historical look at each port and then we'll discuss today's methodology for usage. If you're not a history buff, Full Article…
No ‘Access-Control-Allow-Origin’ header is present on the requested resource
This topic will show you how to fix No ‘Access-Control-Allow-Origin’ header is present on the requested resource. No ‘Access-Control-Allow-Origin’ header is present on the requested resource This happens if you are attempting cross domain request.That is you are sending request from one domain to another domain. Normal browsers doesn’t support cross domain request for security Full Article…
Git – (gnome-ssh-askpass:13543): Gtk-WARNING **: cannot open display
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…
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…
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.
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 – 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…
Gmail – How to unlock captcha and enable less secure apps
If you want to use Gmail to send email for your website, you will need to use SMTP to configure Gmail as a sender. But your functions can’t log in Gmail, because the security options in Gmail. You need to unlock it if you want to use Gmail for your website. Here is the steps: Full Article…