If you want to redirect your Magento site from a non-www, ex. http://yoursite.com to http://www.yoursite.com. There is a trick there.
Enable Url rewriting (Admin Panel → System → Configuration → Web → Url Options → Use Web Server Rewrites → Yes).
Now go to your .htaccess file on your Magento folder, (you might need to back up your .htaccess before making your changes.)
below the line # 123 code:
#RewriteBase /magento/
Add these codes, to make it:
#RewriteBase /magento/
RewriteCond %{HTTP_HOST} !^www\.yoursite\.com$ [NC]
RewriteRule ^(.*)$ http://www.yoursite.com/$1 [L,R=301]
Replace yoursite.com with your own domain. Then, save your changes on your …
Read the full story »
We want to change the status of an order without going thru the process of Shipping and Invoicing. There are instances that Magento will lock the status of an order to pending until the order finishes its shipment.
This hack will activate all the order status on all states. What I mean is the Status dropdown in the Comment History, by choosing the desired status and Submitting the Comment. We can change the status of the order to Complete or Closed or any available status for that matter.
All we have to …
By default, Magento doesn’t allow you to delete Orders on the backend. Well, there is no option in the admin for now. But guess what? there is a work around (yeah~ I know you’ve already expected this.). Boutik Circus created this “Delete Orders” extension which allows you to delete cancelled orders.
Why can we delete cancel order only?
That’s because deleting a complete order breaks links with invoices and shipments and could creates a lot of troubles.
Go to Delete Orders Extension.
Install this extension via Magento Connect Manager.
Magento Connect -> Magento Connect Manager
Hey Guys,
This is Kaspersky Internet Security 7. This version has a license until 2011, if Kaspersky doesn’t catch it by then. I tested this out, the patch doesn’t contain any virus. Download it here. Read the Kaspersky.txt for the procedure on how to activate your Kaspersky Internet Security.
If you already have a Kapsersky installed in your system. You will have to uninstall it first. If add/remove program files won’t work. I have a kaspersky remover here.
If you want to redirect your Magento site from a non-www, ex. http://yoursite.com to http://www.yoursite.com. There is a trick there.
Enable Url rewriting (Admin Panel → System → Configuration → Web → Url Options → Use Web Server Rewrites → Yes).
Now go to your .htaccess file on your Magento folder, (you might need to back up your .htaccess before making your changes.)
below the line # 123 code:
#RewriteBase /magento/
Add these codes, to make it:
#RewriteBase /magento/
RewriteCond %{HTTP_HOST} !^www\.yoursite\.com$ [NC]
RewriteRule ^(.*)$ http://www.yoursite.com/$1 [L,R=301]
Replace yoursite.com with your own domain. Then, save your changes on your …
Hey Guys,
Ever wonder if you can fix those scratches on your laptop screens?
Laptop Scratches
The notebook screen shown above has one deep scratch and several smaller ones.
Remedy is to gently rub toothpaste in a circular motion over the scratches for a few seconds, then wipe the screen clean with a soft cloth. After this treatment, the smaller scratches are gone, and while the larger one remains, it’s less noticeable than before.
source: pcworld.com
I have found a Magento extension (or module if some might call it) that allows you to delete orders and it is totally free.
The catch? This module/extension only orders that are without Invoice, Shippment or Creditmemo could be deleted. You can only delete Cancelled Orders. So~ you still have to cancel the order before deleting it or it will prompt an error “Please cancel your order before delete it“. Why only Cancelled Orders? Because deleting a complete order breaks links with invoices and shipments and could create problems along the …
I think most of you are not surprise when I say that Magento does have a built-in export module.
I’ve locked myself trying to find a way to export my orders for my Magento 1.1.1 set up. And then I found it, szotyi from the Magento Forums posted this great solution to export orders for Magento.
Features includes:
A simple interface on the Sales -> Order page, Orders are exported in XML files, You can export all or only selected orders, Configurable/Customizable XML output
We want to change the status of an order without going thru the process of Shipping and Invoicing. There are instances that Magento will lock the status of an order to pending until the order finishes its shipment.
This hack will activate all the order status on all states. What I mean is the Status dropdown in the Comment History, by choosing the desired status and Submitting the Comment. We can change the status of the order to Complete or Closed or any available status for that matter.
All we have to …