java.net.SocketException: Connection reset

java.net.SocketException: Connection reset      at java.net.SocketInputStream.read(SocketInputStream.java:168)      at java.net.SocketInputStream.read(SocketInputStream.java:182)      at java.io.DataInputStream.readInt(DataInputStream.java:370)      at com.jetbrains.php.debug.zend.ZendDebugUtil.readPacket(ZendDebugUtil.java:98)      at com.jetbrains.php.debug.zend.connection.ZendDebugConnection$MyInputReader.read(ZendDebugConnection.java:78)      at com.jetbrains.php.debug.zend.connection.ZendDebugConnection$MyInputReader.read(ZendDebugConnection.java:67)      at com.jetbrains.php.debug.zend.connection.ZendDebugConnection.init(ZendDebugConnection.java:29)      at com.jetbrains.php.debug.connection.PhpDebugServer.handle(PhpDebugServer.java:35)      at com.jetbrains.php.debug.connection.PhpDebugServer.handle(PhpDebugServer.java:30)      at com.jetbrains.php.connection.ServerConnection$1$1.run(ServerConnection.java:67)      at com.intellij.openapi.application.impl.ApplicationImpl$6.run(ApplicationImpl.java:382)      at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)      at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)      at java.util.concurrent.FutureTask.run(FutureTask.java:138)      at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)      at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)      at java.lang.Thread.run(Thread.java:619)      at com.intellij.openapi.application.impl.ApplicationImpl$1$1.run(ApplicationImpl.java:130)



I'm attempting to Debug with the latest build of PHPStorm 2.0 (PS-98.521) and looking at the idea.log I see the above.  I'm trying to debug a Magento project using Zend Debuger and Zend Server CE on Win7.  I've tried updating my version of Java as well as different ports for the debugger to no availability.  I have an older build on my machine at home with a very similar setup and have no problems debugging.

If anyone has any insights would be appreciated.

Thanks.
0
10 comments

2010-12-10 10:31:41,502 [ 938572]   INFO - hp.connection.ServerConnection - Incoming connection on port 10,137 from 192.168.11.187 2010-12-10 10:32:00,380 [ 957450]   WARN - hp.connection.ServerConnection -   java.io.EOFException      at java.io.DataInputStream.readInt(DataInputStream.java:375)      at com.jetbrains.php.debug.zend.ZendDebugUtil.readPacket(ZendDebugUtil.java:98)      at com.jetbrains.php.debug.zend.connection.ZendDebugConnection$MyInputReader.read(ZendDebugConnection.java:78)      at com.jetbrains.php.debug.zend.connection.ZendDebugConnection$MyInputReader.read(ZendDebugConnection.java:67)      at com.jetbrains.php.debug.zend.connection.ZendDebugConnection.init(ZendDebugConnection.java:29)      at com.jetbrains.php.debug.connection.PhpDebugServer.handle(PhpDebugServer.java:35)      at com.jetbrains.php.debug.connection.PhpDebugServer.handle(PhpDebugServer.java:30)      at com.jetbrains.php.connection.ServerConnection$1$1.run(ServerConnection.java:67)      at com.intellij.openapi.application.impl.ApplicationImpl$6.run(ApplicationImpl.java:382)      at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)      at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)      at java.util.concurrent.FutureTask.run(FutureTask.java:138)      at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)      at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)      at java.lang.Thread.run(Thread.java:619)      at com.intellij.openapi.application.impl.ApplicationImpl$1$1.run(ApplicationImpl.java:130) 2010-12-10 10:32:00,383 [ 957453]   INFO - hp.connection.ServerConnection - ----socket closed 2010-12-10 10:34:38,704 [1115774]   INFO - bug.connection.PhpDebugSession - ----disconnected



Just to add more data from my log.
0

Hello Jared,

It looks like a problem on protocol level. Do you have different versions of Zend Debugger at home and at work?

0

Jared,

Also please provide info about versions of each installed Zend Debugger.

0

Nikolay, Thanks for the response.

From my understanding it is the same version of Zend Server CE pre-packaged with Magento that can be found here:

http://www.magentocommerce.com/product/magento-zend

I have tried disabling windows firewall, and various ports, even attempting to use the firefox Zend Debugger toolbar to try and get a connection, to no availability.

I've attached a copy of my idea.log file if there may be other details or insight.

Here is my /etc/cfg/debugger.ini for Zend Debugger also:

[Zend.debugger] ; register the extension to be loaded by Zend Extension Manager ; Specifies the hosts that are allowed to connect (hostmask list) with Zend Debugger when running a remote debug session with Zend Studio zend_debugger.allow_hosts="127.0.0.1/32,10.0.0.0/8,192.168.0.0/16,172.16.0.0/12,64.124.202.0/24" ; Specifies the hosts that are not allowed to connect (hostmask list) with the Zend Debugger when running a remote debug session with Zend Studio zend_debugger.deny_hosts= ; A list of hosts (hostmask list) that can use the machine on which Zend Server is installed to create a communication tunnel for remote debgging with Zend Studio. This is done to solve firewall connectivity limitations zend_debugger.allow_tunnel= ; The maximum message size accepted by the Zend Debugger for protocol network messages zend_debugger.max_msg_size=2097152 ; The user ID of the httpd process that runs the Zend Debugger (only for tunneling) zend_debugger.httpd_uid=-1 ; A range of ports that the communication tunnel can use. This defines the minimum value for the range zend_debugger.tunnel_min_port=1024 ; A range of ports that the communication tunnel can use. This defines the maximum value for the range zend_debugger.tunnel_max_port=65535 ; Define which clients know that the Zend Debugger is installed:<br> 0 - Never. The presence of the Zend Debugger is not detected by other clients <br> 1 - Always. All clients can detect the Zend Debugger <br> 2 - Allowed Hosts. Only clients listed in zend_debugger.allow_hosts can detect the Zend Debugger<br> Any other value makes the Zend Debugger undetectable (same as "Never") zend_debugger.expose_remotely=1 ; The Debugger's timeout period (in seconds) to wait for a response from the client (Zend Studio) zend_debugger.passive_mode_timeout=20 ; Supported PHP file extensions for debugging. If the suffix does not appear here, the file is ignored zend_debugger.debug_extensions=php,phtml,php3 zend_extension_manager.dir.debugger="C:\Zend\ZendServer\lib\debugger"



Attachment(s):
idea - Copy.log.zip
0

Attached is a screenshot of the ZendDebugger.dll settings, judging by the Date modified I am going to assume there is no difference, however I can check but would need to remote into my machine at home.  Let me know if you need a screenshot of it as well.

Thanks, again!



Attachment(s):
zenddebugger-version.png
0

Jared,

I will investigate your case and answer you.

Thank you for feedback!

0

Thanks Nikolay,

I have found a newer version of the ZendDebugger.dll version 5.3 instead of 5.2 that came with the Zend Server CE package and notice I am no longer getting socket EOF errors in the idea.log.  I'm currently testing this to see if it helps my issue, I've also downloaded the latest build of PhpStorm as well.

Thanks again for your help, I'll report my findings here in case anyone else runs into a similar issue.

0

NikolayMatveev wrote:

Jared,

I will investigate your case and answer you.

Thank you for feedback!

2010-12-13 09:28:35,711 [  38067]   INFO - hp.connection.ServerConnection - StartingZend Debugger on port 8081 2010-12-13 09:28:36,237 [  38593]   INFO - hp.connection.ServerConnection - Incoming connection on port 8,081 from 192.168.11.209 2010-12-13 09:28:37,389 [  39745]   WARN - hp.connection.ServerConnection - Connection reset java.net.SocketException: Connection reset      at java.net.SocketInputStream.read(SocketInputStream.java:168)      at java.net.SocketInputStream.read(SocketInputStream.java:182)      at java.io.DataInputStream.readInt(DataInputStream.java:370)      at com.jetbrains.php.debug.zend.ZendDebugUtil.readPacket(ZendDebugUtil.java:98)      at com.jetbrains.php.debug.zend.connection.ZendDebugConnection$MyInputReader.read(ZendDebugConnection.java:74)      at com.jetbrains.php.debug.zend.connection.ZendDebugConnection$MyInputReader.read(ZendDebugConnection.java:62)      at com.jetbrains.php.debug.zend.connection.ZendDebugConnection.init(ZendDebugConnection.java:28)      at com.jetbrains.php.debug.connection.PhpDebugServer.handle(PhpDebugServer.java:39)      at com.jetbrains.php.debug.connection.PhpDebugServer.handle(PhpDebugServer.java:33)      at com.jetbrains.php.connection.ServerConnection$1$1.run(ServerConnection.java:64)      at com.intellij.openapi.application.impl.ApplicationImpl$6.run(ApplicationImpl.java:382)      at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)      at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)      at java.util.concurrent.FutureTask.run(FutureTask.java:138)      at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)      at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)      at java.lang.Thread.run(Thread.java:619)      at com.intellij.openapi.application.impl.ApplicationImpl$1$1.run(ApplicationImpl.java:130) 2010-12-13 09:28:37,389 [  39745]   INFO - hp.connection.ServerConnection - ----socket closed 2010-12-13 09:28:47,766 [  50122]   INFO - hp.connection.ServerConnection - Stopping Zend Debugger on port 8081 2010-12-13 09:28:47,766 [  50122]   INFO - hp.connection.ServerConnection - Stopped listening on port 8081 2010-12-13 09:28:50,079 [  52435]   INFO - s.impl.stores.FileBasedStorage - Document was not loaded for $APP_CONFIG$/intentionSettings.xml file is null 2010-12-13 09:28:50,079 [  52435]   INFO - .impl.stores.XmlElementStorage - Document was not loaded for $APP_CONFIG$/intentionSettings.xml 2010-12-13 09:28:57,509 [  59865]   INFO - hp.connection.ServerConnection - StartingZend Debugger on port 8081 2010-12-13 09:29:00,691 [  63047]   INFO - hp.connection.ServerConnection - Incoming connection on port 8,081 from 192.168.11.209 2010-12-13 09:29:12,359 [  74715]   WARN - hp.connection.ServerConnection - EOF java.io.IOException: EOF      at com.jetbrains.php.debug.zend.connection.ZendDebugConnection$MyInputReader.read(ZendDebugConnection.java:77)      at com.jetbrains.php.debug.zend.connection.ZendDebugConnection$MyInputReader.read(ZendDebugConnection.java:62)      at com.jetbrains.php.debug.zend.connection.ZendDebugConnection.init(ZendDebugConnection.java:28)      at com.jetbrains.php.debug.connection.PhpDebugServer.handle(PhpDebugServer.java:39)      at com.jetbrains.php.debug.connection.PhpDebugServer.handle(PhpDebugServer.java:33)      at com.jetbrains.php.connection.ServerConnection$1$1.run(ServerConnection.java:64)      at com.intellij.openapi.application.impl.ApplicationImpl$6.run(ApplicationImpl.java:382)      at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)      at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)      at java.util.concurrent.FutureTask.run(FutureTask.java:138)      at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)      at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)      at java.lang.Thread.run(Thread.java:619)      at com.intellij.openapi.application.impl.ApplicationImpl$1$1.run(ApplicationImpl.java:130) 2010-12-13 09:29:12,359 [  74715]   INFO - hp.connection.ServerConnection - ----socket closed



It appears even with the latest build of PHP Storm, Zend Server and the ZendDebugger.dll I'm still getting the same issues.  Any insight appreciated.

Thanks!
0

Still not working for me, got the latest version of EAP build... PS 102.18.

Windows7: Zend Server CE /w Zend Debugger enabled.

PHP 5.2.14 (CGI/FastCGI)

...and yes I'm following the steps suggested to enable the debugger for localhost (mapped locally via subdomain.host.com via my hosts file), I have even done the following:

http://confluence.jetbrains.net/display/WI/Configure+Zend+Debugger+Toolbar+for+Firefox+to+work+with+PhpStorm

However I never get any breakpoints to trigger inside the IDE, I do see a prompt in the browser after the initial load to download a file instead of presenting the page which I'm assuming is the "parts" PhpStorm would be picking up through the debugger and then re-routing back to the browser... however I'm only offered to "download" it instead...

Looking at my phpinfo(); I see Zend Debugger:


Expose Zend Debugger always
Passive Mode Timeout 20 seconds



I have tried with both Chome and Firefox... and I cannot use Xdebug as it does NOT play well with Zend Server CE...

Here is my log files with my log.xml set at:

  <category name="com.jetbrains.php.debug.zend.connection.ZendDebugConnection">
       <priority value="DEBUG"/>
  </category>



And my idea.log:

2011-01-17 11:44:05,372 [  30062]   INFO - hp.connection.ServerConnection - StartingXDebug on port 9000
2011-01-17 11:44:05,377 [  30067]   INFO - hp.connection.ServerConnection - StartingZend Debugger on port 10137
2011-01-17 11:44:05,380 [  30070]   INFO - hp.connection.ServerConnection - StartingZend Debugger Settings Broadcasting on port 20080
2011-01-17 11:44:11,246 [  35936]   INFO - nges.UpdatingChangeListBuilder - [processChangeInList-1] entering, cl name: null change: C:/Zend/Apache2/htdocs/SSG/app/.htaccess
2011-01-17 11:44:11,246 [  35936]   INFO - nges.UpdatingChangeListBuilder - [processChangeInList-1] to add to corresponding list
2011-01-17 11:44:11,246 [  35936]   INFO - i.vcs.changes.ChangeListWorker - [addChangeToCorrespondingList] for change C:/Zend/Apache2/htdocs/SSG/app/.htaccess type: MODIFICATION have before revision: true
2011-01-17 11:44:11,246 [  35936]   INFO - i.vcs.changes.ChangeListWorker - [addChangeToCorrespondingList] skip default list: Default type: MODIFICATION have before revision: true
2011-01-17 11:44:13,569 [  38259]   INFO - nges.UpdatingChangeListBuilder - [processChangeInList-1] entering, cl name: null change: C:/Zend/Apache2/htdocs/SSG/app/design/frontend/eso/default/template/checkout/success.phtml
2011-01-17 11:44:13,569 [  38259]   INFO - nges.UpdatingChangeListBuilder - [processChangeInList-1] to add to corresponding list
2011-01-17 11:44:13,570 [  38260]   INFO - i.vcs.changes.ChangeListWorker - [addChangeToCorrespondingList] for change C:/Zend/Apache2/htdocs/SSG/app/design/frontend/eso/default/template/checkout/success.phtml type: MODIFICATION have before revision: true
2011-01-17 11:44:13,570 [  38260]   INFO - i.vcs.changes.ChangeListWorker - [addChangeToCorrespondingList] skip default list: Default type: MODIFICATION have before revision: true
2011-01-17 11:44:17,968 [  42658]   INFO - nges.UpdatingChangeListBuilder - [processChangeInList-1] entering, cl name: null change: C:/Zend/Apache2/htdocs/SSG/index.php
2011-01-17 11:44:17,969 [  42659]   INFO - nges.UpdatingChangeListBuilder - [processChangeInList-1] to add to corresponding list
2011-01-17 11:44:17,969 [  42659]   INFO - i.vcs.changes.ChangeListWorker - [addChangeToCorrespondingList] for change C:/Zend/Apache2/htdocs/SSG/index.php type: MODIFICATION have before revision: true
2011-01-17 11:44:17,969 [  42659]   INFO - i.vcs.changes.ChangeListWorker - [addChangeToCorrespondingList] skip default list: Default type: MODIFICATION have before revision: true
2011-01-17 11:44:32,135 [  56825]   INFO - hp.connection.ServerConnection - Incoming connection on port 10,137 from 192.168.11.249
2011-01-17 11:44:33,468 [  58158]   WARN - hp.connection.ServerConnection - EOF
java.io.IOException: EOF
     at com.jetbrains.php.debug.zend.connection.ZendDebugConnection$MyInputReader.read(ZendDebugConnection.java:77)
     at com.jetbrains.php.debug.zend.connection.ZendDebugConnection$MyInputReader.read(ZendDebugConnection.java:62)
     at com.jetbrains.php.debug.zend.connection.ZendDebugConnection.init(ZendDebugConnection.java:28)
     at com.jetbrains.php.debug.connection.PhpDebugServer.handle(PhpDebugServer.java:39)
     at com.jetbrains.php.debug.connection.PhpDebugServer.handle(PhpDebugServer.java:33)
     at com.jetbrains.php.connection.ServerConnection$1$1.run(ServerConnection.java:64)
     at com.intellij.openapi.application.impl.ApplicationImpl$6.run(ApplicationImpl.java:382)
     at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
     at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
     at java.util.concurrent.FutureTask.run(FutureTask.java:138)
     at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
     at java.lang.Thread.run(Thread.java:619)
     at com.intellij.openapi.application.impl.ApplicationImpl$1$1.run(ApplicationImpl.java:130)
2011-01-17 11:44:33,469 [  58159]   INFO - hp.connection.ServerConnection - ----socket closed
2011-01-17 11:44:33,699 [  58389]   INFO - hp.connection.ServerConnection - Incoming connection on port 10,137 from 192.168.11.249
2011-01-17 11:44:37,223 [  61913]   WARN - hp.connection.ServerConnection - Connection reset
java.net.SocketException: Connection reset
     at java.net.SocketInputStream.read(SocketInputStream.java:168)
     at java.net.SocketInputStream.read(SocketInputStream.java:182)
     at java.io.DataInputStream.readInt(DataInputStream.java:370)
     at com.jetbrains.php.debug.zend.ZendDebugUtil.readPacket(ZendDebugUtil.java:98)
     at com.jetbrains.php.debug.zend.connection.ZendDebugConnection$MyInputReader.read(ZendDebugConnection.java:74)
     at com.jetbrains.php.debug.zend.connection.ZendDebugConnection$MyInputReader.read(ZendDebugConnection.java:62)
     at com.jetbrains.php.debug.zend.connection.ZendDebugConnection.init(ZendDebugConnection.java:28)
     at com.jetbrains.php.debug.connection.PhpDebugServer.handle(PhpDebugServer.java:39)
     at com.jetbrains.php.debug.connection.PhpDebugServer.handle(PhpDebugServer.java:33)
     at com.jetbrains.php.connection.ServerConnection$1$1.run(ServerConnection.java:64)
     at com.intellij.openapi.application.impl.ApplicationImpl$6.run(ApplicationImpl.java:382)
     at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
     at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
     at java.util.concurrent.FutureTask.run(FutureTask.java:138)
     at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
     at java.lang.Thread.run(Thread.java:619)
     at com.intellij.openapi.application.impl.ApplicationImpl$1$1.run(ApplicationImpl.java:130)
2011-01-17 11:44:37,223 [  61913]   INFO - hp.connection.ServerConnection - ----socket closed
2011-01-17 11:44:49,681 [  74371]   INFO - s.impl.stores.FileBasedStorage - Document was not loaded for $APP_CONFIG$/intentionSettings.xml file is null
2011-01-17 11:44:49,681 [  74371]   INFO - .impl.stores.XmlElementStorage - Document was not loaded for $APP_CONFIG$/intentionSettings.xml
2011-01-17 11:45:15,125 [  99815]   INFO - hp.connection.ServerConnection - Incoming connection on port 10,137 from 192.168.11.249
2011-01-17 11:45:18,392 [ 103082]   WARN - hp.connection.ServerConnection - EOF
java.io.IOException: EOF
     at com.jetbrains.php.debug.zend.connection.ZendDebugConnection$MyInputReader.read(ZendDebugConnection.java:77)
     at com.jetbrains.php.debug.zend.connection.ZendDebugConnection$MyInputReader.read(ZendDebugConnection.java:62)
     at com.jetbrains.php.debug.zend.connection.ZendDebugConnection.init(ZendDebugConnection.java:28)
     at com.jetbrains.php.debug.connection.PhpDebugServer.handle(PhpDebugServer.java:39)
     at com.jetbrains.php.debug.connection.PhpDebugServer.handle(PhpDebugServer.java:33)
     at com.jetbrains.php.connection.ServerConnection$1$1.run(ServerConnection.java:64)
     at com.intellij.openapi.application.impl.ApplicationImpl$6.run(ApplicationImpl.java:382)
     at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
     at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
     at java.util.concurrent.FutureTask.run(FutureTask.java:138)
     at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
     at java.lang.Thread.run(Thread.java:619)
     at com.intellij.openapi.application.impl.ApplicationImpl$1$1.run(ApplicationImpl.java:130)
2011-01-17 11:45:18,392 [ 103082]   INFO - hp.connection.ServerConnection - ----socket closed
2011-01-17 11:45:18,449 [ 103139]   INFO - hp.connection.ServerConnection - Incoming connection on port 10,137 from 192.168.11.249
2011-01-17 11:45:19,046 [ 103736]   WARN - hp.connection.ServerConnection - Connection reset
java.net.SocketException: Connection reset
     at java.net.SocketInputStream.read(SocketInputStream.java:168)
     at java.net.SocketInputStream.read(SocketInputStream.java:182)
     at java.io.DataInputStream.readInt(DataInputStream.java:370)
     at com.jetbrains.php.debug.zend.ZendDebugUtil.readPacket(ZendDebugUtil.java:98)
     at com.jetbrains.php.debug.zend.connection.ZendDebugConnection$MyInputReader.read(ZendDebugConnection.java:74)
     at com.jetbrains.php.debug.zend.connection.ZendDebugConnection$MyInputReader.read(ZendDebugConnection.java:62)
     at com.jetbrains.php.debug.zend.connection.ZendDebugConnection.init(ZendDebugConnection.java:28)
     at com.jetbrains.php.debug.connection.PhpDebugServer.handle(PhpDebugServer.java:39)
     at com.jetbrains.php.debug.connection.PhpDebugServer.handle(PhpDebugServer.java:33)
     at com.jetbrains.php.connection.ServerConnection$1$1.run(ServerConnection.java:64)
     at com.intellij.openapi.application.impl.ApplicationImpl$6.run(ApplicationImpl.java:382)
     at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
     at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
     at java.util.concurrent.FutureTask.run(FutureTask.java:138)
     at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
     at java.lang.Thread.run(Thread.java:619)
     at com.intellij.openapi.application.impl.ApplicationImpl$1$1.run(ApplicationImpl.java:130)
2011-01-17 11:45:19,046 [ 103736]   INFO - hp.connection.ServerConnection - ----socket closed


Any help would greatly be appreciated as I'm highly contimplating buying a license (currently evaluating) for PhpStorm if I can just get around this hurdle...

Thanks.
0

Hello Jared,

Do you still have an issue?

0

Please sign in to leave a comment.