I need to export the following customer information from our Magento site:
- First name
- Last name
- Store ID
Trying to do so via System > Import/Export > Dataflow – Profiles just times out, despite several attempts at increasing various PHP memory and timeout limits on the server.
Please can someone help?
Thanks in advance.
Mark
Best Answer
For this you can create your php script, create one php file on root directory of your website and use following code.for ex: if file name is
exportCustomer.php
and your url is like http://magentowebsite.com then after placing this file in root you need to visit url like http://magentowebsite.com/exportCustomer.php then you will get a csv in your root directory with name as customers.csvHope this will help you.