Do we need to be PCI Compliant?
I’ve been getting asked this question a lot. And as I’m not an expert on this topic, I’ve found some information.
There are ways to be PCI Compliant with your magento store. And depending on the way you take payments, you might be “Out of scope”, meaning you don’t need to be PCI Compliant, but your Merchant ( bank ) might still require it.
Read More HERE -> http://www.blueacorn.com/pci-compliance-for-magento/
Specifically read the section “How to Be PCI Compliant on Magento”
Mbox and Maildir are 2 mail storage formats, used by email clients/servers.
First, this is not a simple way of converting, but it is easier than having to loose your mail.
So I created the Mbox to Maildir Converter Tool.
This example is what to do for a mailbox from Thunderbird mail client using an IMAP account, and the script was built using PHP and uses the Pear Mail_Mbox package to read mbox files. This script was basically written for thunderbird style of mbox, but could probably be changed to work with other styles.
Lets say that you had an account in Thunderbird, and you removed the account, or your mail now is hosted at a new server, and they didn’t move your old mail.
If your server has changed, and your old mail is not there, when you connect to that server, it will sync with the new server and completely wipe your mail, so that it looks like you have nothing. Thunderbird however, until you compact your folders, will still have the mbox files and structure of your mail. This is a savior.
What you can do, is then find your mbox folder for that account, zip it up and move it. It is usually somewhere like:
Mac: /Users/<Username>/Library/Thunderbird/Profiles/<Profile name>/ImapMail/yourdomain.com
Windows: C:\Documents and Settings\<Windows user name>\Application Data\Thunderbird\Profiles\<Profile name>\ImapMail\yourdomain.com
With this file, you can then upload the zip file to your new server, and then use the mbox to maildir converter to rebuild your mail files and folders.
Example MBOX structure:
* Inbox main inbox file
* Inbox.sbd notice the .sbd folder with sub files/folders under the inbox.
* Inbox.sbd/Projects main projects file
* Inbox.sbd/Projects.sbd projects folder structure to contain sub mboxes
* Inbox.sbd/Projects.sbd/subfolder subfolder/mbox under projects
Usage: (best if run from command line)
* set variables in the script first then use the command below.
* php mb2md.php
If you have an questions about this script, please contact us
Download mb2md
A client asked me the other day how to manage a Magento refund. Magento is a great eCommerce software and has a lot of functionality, and refunds/credit memos is one of them.
First off here is a link to an article explaining exactly how to do it. http://www.cpmagento.com/knowledgebase.php?action=showEntry&data=1056
Basically here is the gist of it.
- Login to the admin
- Click on “Sales -> Orders”
- Click on the Order you want to refund
- On the left click “Invoices” and click on the Invoice you want to refund
- Click “Credit Memo”
- Enter the item quantities you want to refund, then click “Update Qty’s”
- Click the “Refund” button at the bottom
Once done, wait a few minutes then login to Paypal, Authorize.net etc.. and check for the refund.
If you have any questions please contact us!