Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Language IDEs » PHP Development Tools (PDT) » Can't Create Debug Launch Configuration
Can't Create Debug Launch Configuration [message #76852] Wed, 23 July 2008 22:50 Go to next message
Mark Dexter is currently offline Mark DexterFriend
Messages: 324
Registered: July 2009
Senior Member
Hi. I'm trying to install the "all in one" 3.3.2 Eclipse/PDT with XDebug.
I've got it working so that I can see that XDebug is loaded (for example,
in phpinfo()), but when I try to create a new Debug Launch Configuration,
and click on "New_Configuration" under "PHP Web Script with XDebug", I get
the following error: "An error has occurred. See error log for more
details.
org.eclipse.php.internal.core.util.FileUtils.fileExists(Ljav a/lang/String;)Z ".
Here is the first part of the eclipse error log:

!SESSION 2008-07-23 14:44:25.734
-----------------------------------------------

eclipse.buildId=M20080221-1800
java.version=1.6.0_05
java.vendor=Sun Microsystems Inc.
BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
Command-line arguments: -os win32 -ws win32 -arch x86 -consolelog

!ENTRY org.eclipse.osgi 2 1 2008-07-23 14:46:04.000
!MESSAGE NLS missing message: DebugConnectionThread_oldDebuggerVersion in:
org.e
clipse.php.internal.debug.core.PHPDebugCoreMessages

!ENTRY org.eclipse.osgi 2 1 2008-07-23 14:46:04.015
!MESSAGE NLS missing message: DebugServerTestEvent_success in:
org.eclipse.php.i
nternal.debug.core.PHPDebugCoreMessages

!ENTRY org.eclipse.osgi 2 1 2008-07-23 14:46:04.015
!MESSAGE NLS missing message: DebugServerTestEvent_timeOutMessage in:
org.eclips
e.php.internal.debug.core.PHPDebugCoreMessages

!ENTRY org.eclipse.jface 4 2 2008-07-23 14:47:15.406
!MESSAGE Problems occurred when invoking code from plug-in:
"org.eclipse.jface".[/quote]

I don't really understand this, but it looks like I might be using an "old
Debugger Version".

At this point, I am unable to create a Debug Launch Configuration (the OK
button is grayed out). So I'm stuck.

Should I be using a different Eclipse version other than 3.3.2? A newer
version of XDebug? (I'm using "php_xdebug-2.0.0-5.2.2.dll").

Thanks for any help you can give me. Mark
Re: Can't Create Debug Launch Configuration [message #76902 is a reply to message #76852] Thu, 24 July 2008 08:27 Go to previous messageGo to next message
D Kelsey is currently offline D KelseyFriend
Messages: 232
Registered: July 2009
Senior Member
PDT 1.0.3 has Xdebug support built in. It looks like you have tried to install the old plugins that
were a bolt on to PDT before xdebug got integrated into it. You need to remove them.

Also I recommend moving to xdebug version 2.0.3 as there will be useful bug fixes in it.

Regards
Dave Kelsey


Mark Dexter wrote:
> Hi. I'm trying to install the "all in one" 3.3.2 Eclipse/PDT with
> XDebug. I've got it working so that I can see that XDebug is loaded (for
> example, in phpinfo()), but when I try to create a new Debug Launch
> Configuration, and click on "New_Configuration" under "PHP Web Script
> with XDebug", I get the following error: "An error has occurred. See
> error log for more details.
> org.eclipse.php.internal.core.util.FileUtils.fileExists(Ljav a/lang/String;)Z ".
> Here is the first part of the eclipse error log:
>
> !SESSION 2008-07-23 14:44:25.734
> -----------------------------------------------
>
> eclipse.buildId=M20080221-1800
> java.version=1.6.0_05
> java.vendor=Sun Microsystems Inc.
> BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
> Command-line arguments: -os win32 -ws win32 -arch x86 -consolelog
>
> !ENTRY org.eclipse.osgi 2 1 2008-07-23 14:46:04.000
> !MESSAGE NLS missing message: DebugConnectionThread_oldDebuggerVersion
> in: org.e
> clipse.php.internal.debug.core.PHPDebugCoreMessages
>
> !ENTRY org.eclipse.osgi 2 1 2008-07-23 14:46:04.015
> !MESSAGE NLS missing message: DebugServerTestEvent_success in:
> org.eclipse.php.i
> nternal.debug.core.PHPDebugCoreMessages
>
> !ENTRY org.eclipse.osgi 2 1 2008-07-23 14:46:04.015
> !MESSAGE NLS missing message: DebugServerTestEvent_timeOutMessage in:
> org.eclips
> e.php.internal.debug.core.PHPDebugCoreMessages
>
> !ENTRY org.eclipse.jface 4 2 2008-07-23 14:47:15.406
> !MESSAGE Problems occurred when invoking code from plug-in:
> "org.eclipse.jface".[/quote]
>
> I don't really understand this, but it looks like I might be using an
> "old Debugger Version".
> At this point, I am unable to create a Debug Launch Configuration (the
> OK button is grayed out). So I'm stuck.
>
> Should I be using a different Eclipse version other than 3.3.2? A newer
> version of XDebug? (I'm using "php_xdebug-2.0.0-5.2.2.dll").
> Thanks for any help you can give me. Mark
>
Re: Can't Create Debug Launch Configuration [message #77063 is a reply to message #76902] Thu, 24 July 2008 18:22 Go to previous messageGo to next message
Mark Dexter is currently offline Mark DexterFriend
Messages: 324
Registered: July 2009
Senior Member
Thanks very much. I've got it working now. When you recommend xdebug
version 2.0.3, is the the DLL (I'm on Windows) you are referring to. Do
you happen to know where I can download this compiled for Windows? Thanks
again. Mark
Re: Can't Create Debug Launch Configuration [message #77085 is a reply to message #77063] Thu, 24 July 2008 19:51 Go to previous messageGo to next message
D Kelsey is currently offline D KelseyFriend
Messages: 232
Registered: July 2009
Senior Member
All things relating to the xdebug php extension can be found at http://www.xdebug.org.
You can download the binary from there.

Regards
Dave Kelsey

Mark Dexter wrote:
> Thanks very much. I've got it working now. When you recommend xdebug
> version 2.0.3, is the the DLL (I'm on Windows) you are referring to. Do
> you happen to know where I can download this compiled for Windows?
> Thanks again. Mark
>
Re: Can't Create Debug Launch Configuration [message #77095 is a reply to message #77085] Thu, 24 July 2008 22:31 Go to previous message
Mark Dexter is currently offline Mark DexterFriend
Messages: 324
Registered: July 2009
Senior Member
Thanks very much. I had looked around for the DLL but only had seen
source. I'm up and running. Mark
Previous Topic:Setting mark in the code
Next Topic:[Dltk-dev] script parse/syntax errors not markers anymore on thefile? (and shown in problems view)
Goto Forum:
  


Current Time: Fri Apr 19 22:07:37 GMT 2024

Powered by FUDForum. Page generated in 0.03551 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top