Search
Categories
[Magento] Exporting products to CSV results in “Invalid entity model” error
To resolve it open
app/code/core/Mage/ImportExport/Model/Export/Adapter/Abstract.php
around line no. 60
replace
$destination = tempnam(sys_get_temp_dir(), ‘importexport_’);
to
$destination = tempnam(Mage::getBaseDir() . ‘/tmp/’ , ‘importexport_’);
01.
