brucekaushik
brucekaushik

Reputation: 387

Magento: Catalog > Manage Products page is blank (rest of the backend is working fine)

Yesterday we have imported a csv of 1.5 million products into magento using MAGMI extension.

Suddenly in the backend 'Catalog > Manage Products' page is blank. There are no errors, i have enabled error logging, exception printing, php error reporting, restarted apache server.

Note:

How do i identify and solve the problem?

Upvotes: 0

Views: 3126

Answers (2)

brucekaushik
brucekaushik

Reputation: 387

The problem was caused because of the memory limits set by php & magento..

we had to increase the memory_limit in the php.ini file, and importantly we also had to do the same in .htaccess file in the magento root.

Upvotes: 2

Mageotron
Mageotron

Reputation: 155

  1. Check for any newly extension installed that have control over admin grid (May be some attribute data required by the extension may be skipped during importing process)

  2. Check in Apache error.log,mysql.log .(There would always be a trace)

  3. If anything isn't working override admin controllers for product and identify the function causing the issue.

Note: Please share the log generated details from magento .

Upvotes: 2

Related Questions