Magento – How to i solve – No valid data sent – Error

exportimportexportmagento-1magento-1.9

I am export my products after hosting its not working, but from my localhost its working fine. I can not export from import/export,

am increased max_exe_time

my store consist 30,000 products

When i try to export products, am faced 500 internal error

enter image description here

Best Answer

Probably the export execution hit the max_execution_time or memory_limit limits set by php. However, if your application uses Apache as a webserver, you should be able to modify these limits by setting them in your .htaccess.

#Increase the memory limito to 1G
php_value memory_limit 1G

# Define the script timeout after 1 hour
php_value max_execution_time 3600

# If Magento fails after submitting a form you may need to tune the input limits

php_value post_max_size 5M
php_value upload_max_filesize 5M
php_value max_input_time 300

After editing the .htaccess, upload it in the Magento root.

Warning:

errors in the .htaccess file may lead to unreachable (error 500) website. Test it locally before uploading it.

Related Topic