0

In my store approximately 16,000 products are there. When I try to export both ways import/export or dataflow, both show error. But when I export less amount of data (say 200-300 products at a time), I am able to export my products. Which means I can't able to export all my products at a single file.

System > Import/Export > Export error:

Export error

System > Import/Export > Dataflow profiles > Export all products error:

Export all products error

Siarhey Uchukhlebau
  • 15,957
  • 11
  • 54
  • 83
Gem
  • 699
  • 16
  • 50
  • export them in batches. – Marius Jul 22 '16 at 09:24
  • could you please explain briefly. – Gem Jul 22 '16 at 09:26
  • I don't know exact error, let me know one thing clear, my export working in localhost perfectly, after i host only i got the export error, the matter of the error is, my export working, bulk export only not working, is there any memory allocation error or my host provider error or my file copy error, help me to get out from this killer head ache. – Gem Jul 22 '16 at 09:30
  • How can i export like batches. – Gem Jul 22 '16 at 09:32
  • 2
    apply filters to the export – Marius Jul 22 '16 at 09:32
  • but what about my not filters product, – Gem Jul 22 '16 at 09:33
  • Actually may i know the error sir, the solution is second part, atleast i want know my error. – Gem Jul 22 '16 at 09:34
  • 1
    @Marius : Shall i post as a bug to magento – Gem Jul 22 '16 at 10:40
  • Please stop asking the same question again and again with different words, you are wasting the time of everybody who tries to help you and does not see that the same advice has been given before. You can add information to the original question and/or add a bounty to draw attention to it. – Fabian Schmengler Jul 22 '16 at 11:58

1 Answers1

0

For your requirement, you need to increase php memory limit. You can do this using this link:

There are many ways to change PHP memory limit. These are very simple ways to do

  1. php.ini

Locate your php.ini file by run phpinfo() function, I think you must have PHP skill enough to do this .

Then find out the line like this in php.ini file

Code:

memory_limit = 64M

You can change 64M to whatever you want.

This way only do when you are owner of server or VPS. Let 's use other way if you are not.

  1. .htaccess

Put this line in your first line of your .htaccess file

Code:

php_value memory_limit 64M

After increasing memory limit, try to export using dataprofile.

Siarhey Uchukhlebau
  • 15,957
  • 11
  • 54
  • 83