Reputation: 31
In my magento website, when I try to edit user from backend will show blank page, I have not found any error on customer page. I have 600+ customer. can you help on this please?
Upvotes: 2
Views: 1224
Reputation: 371
Sometimes, it is related to memory as well, try increasing memory using below code in index.php
ini_set('memory_limit', '256M');
Upvotes: 1
Reputation: 2809
In index.php
file, Use this code to check what is the error.
ini_set('display_errors',1);
Only then will able to help you.
Upvotes: 1