Maxcot
Maxcot

Reputation: 1597

How do I switch off debugging in Aptana?

I've been trying to understand how to use Debugging in Aptana Studio 3 for a PHP web application. After much frustration I've decided I'll leave it for now.

Only problem is that my IDE is now always jumping into debug mode. If Aptana is open, then any attempt to run my app results in Aptana launching a debug sort of interruption.

I've deleted the Debug Configurations, shut down, restarted, to no avail.

Specifically, Apatana is saying to me

XDebug JIT Session [Remote Launch]
  PHP Application (port 9000)
      Remote Launch (stepping)
         php/index.php.{main} : lineno 21

Where is the off switch :(

Upvotes: 0

Views: 809

Answers (2)

Kunapareddy
Kunapareddy

Reputation: 45

If you want to switch from debug perspective to default web perspective,

navigate to Window > Open Perspective > Other....

In the dialog box select Web(default) and click OK.

You'll be back to your regular layout or perspective.

Upvotes: 2

DanH
DanH

Reputation: 5818

I found that if I view the cookies for the site that keeps sending debug requests, there is a cookie named XDEBUG_SESSION. Deleting this cookie and ensuring the XDEBUG_SESSION_START=ECLIPSE_DBGP_1412660958 is not in the URL makes the site stop requesting debug.

Upvotes: 0

Related Questions