Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to trace what exactly Magento is doing?

Tags:

magento

Is it possible to see the route chosen, controller, etc.?

I know I can turn on the inline tracing but that doesn't really seem sufficient.

like image 829
john Avatar asked Jul 13 '11 18:07

john


2 Answers

Look into Alan Storms Commerce Bug module and I would highly recommend setting up X-Debug.

like image 173
B00MER Avatar answered Sep 23 '22 21:09

B00MER


Tracing what Magento is doing and how the code flow works

Best way is to use PHP IDE like Eclipse along with Debugger like Xdebug.

Here are some useful links on Debugging PHP applications with Xdebug:-

http://www.eclipse.org/pdt/articles/debugger/os-php-eclipse-pdt-debug-pdf.pdf

http://devzone.zend.com/article/2930

like image 42
Mukesh Chapagain Avatar answered Sep 25 '22 21:09

Mukesh Chapagain