presty Posted August 9, 2012 Share Posted August 9, 2012 Hi, I'm developing some modules with Eclipse PDT and I would like to know if anyone has an environment that allows to debug custom modules from Eclipse. What I have done so far: Installed XAMPP in windows with XDebug. Installed Eclipse PDT and configured a PHP server and PHP Debuger. Configured XDebug in Eclipse to accept remote sessions (Windows>Preferences>PHP>Debug>Installed Debuggers>XDebug: Accept remote sessions = prompt) Created a PHP project containing the PrestaShop SVN project. This version has to be replicated exactly in the Server, I use FileSync extension for the sync part. Created a PHP project containing my module. This module is also Synced to the /modules folder in the server using FileSync extension. What I have been able to do is to Debug the core of PrestaShop when I open a browser and acces the server (http://localhost/). When I do that, Eclipse prompts if I want to start a debug session and then I can go line by line debugging the code, starting at index.php. The problem is that I'm not able to debug code from my custom modules. That means that when I open the browser and I go to a page which is rendered by my module, Eclipse does not stop in my breakpoints. Does anyone know how to solve the problem? How are you debugging your custom modules? http://andrei.gmxhom...sync/index.html 1 Link to comment Share on other sites More sharing options...
G-Man Posted January 1, 2014 Share Posted January 1, 2014 I have the same problem. Link to comment Share on other sites More sharing options...
Totti Posted August 10, 2014 Share Posted August 10, 2014 Same problem Link to comment Share on other sites More sharing options...
LouAdrien Posted October 10, 2014 Share Posted October 10, 2014 If you are trying to debug class override, these overrides get copied to the folder /overrides/class/yourclass. The file that you provide in the module itself is actualy never used, so you have to set breakpoints on the copied ones. Hope that helps. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now