Add new user error in magento 1.5.0.1

Hi guys. I get a blank page, and also redirect to the assigned role page after clicking Add user → System → Permissions → User → Add new user. I checked the log, report, file exception error, found no errors even when I turned it on. I can not add a new user. If someone points me in the right direction, it will be great.

Thanks in advance.

+1
source share
2 answers

The error was fixed by changing the contents of the main getRowUrl function in the application \ code \ core \ Mage \ Adminhtml \ Block \ Widget \ Grid.php

The main function:

public function getRowUrl($item) { $res = parent::getRowUrl($item); return ($res ? $res : '#'); } Replaced with: public function getRowUrl($item) { return $this->getUrl('*/*/edit', array('id' => $item->getId())); } 

It worked great.

+1
source

This is a question I asked before, and it was closed to be vague.

I know how disappointed you are, because it is impossible to find a solution on the net.

My experience has since taught me that if I get a blank page, this probably means my work environment, web server, IDE, etc. just got too heavy.

My advice:

  • Restart Apache Server
  • verify that firefox is not consuming too much memory in task manager
  • Similarly with your IDE.
  • Also keep an eye on the resources used by the JAVA JAR used by your IDE.
  • Disable XDebug as it has memory leaks.
  • Install cron to restart apache every hour.

Remember to also clear the cache!

0
source

All Articles