Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
2answers
1k views

How to search all loaded scripts in Chrome Developer Tools?

In Firebug, you can search some text and it will look for it in all scripts loaded on a page. Can the same be done in Chrome Developer tools while debugging client script? I tried it, but it seems to ...
8
votes
4answers
21k views

Google Chrome Javascript Debugger and Content Scripts

This question has been asked similarly before (http://stackoverflow.com/questions/66420/how-do-you-launch-the-javascript-debugger-in-google-chrome), but I can't seem to debug Javascript in Google ...
5
votes
10answers
5k views

How Do I Shut Off Visual Studio 2008 Script Debugging

If I launch an ASP.NET project, using Visual Studio 2008 and Internet Explorer, Visual Studio starts script debugging. I get a Script Documents node with a child node of Windows Internet Explorer and ...
4
votes
2answers
113 views

debugging a shared library wrapped by SWIG in perl

I have wrapped my C/C++ code using SWIG in Perl. I have few segmentation fault because of the wrapped code. I am trying to use ddd with the Perl script but unfortunately even if I set a breakpoint on ...
3
votes
1answer
333 views

Firebug 1.6 doesn't show me JS errors

I am working in local and I just updated firebug to the new version. Before the update whatever error that I was making with js, firebug was showing me on which line wasn't working the code (so I ...
3
votes
3answers
4k views

Korn Shell - Set “-x” (debug) flag globally?

Is there a way to set the debug mode(set -x) on a KornShell script globally? Currently it seems I have do something like the following: a(){ set -x #commands } b(){ set -x #more ...
3
votes
3answers
1k views

Debug PHP scripts using Eclipse

I've been using Eclipse 3.4.2 with PHPEclipse and Zend Debugger for some time without issue. Suddenly, I cannot debug the PHP scripts. I can run them fine but when I select Debug As... the script ...
2
votes
2answers
278 views

Debugging Python within Ableton Live

How can I see script errors for my python MIDI Remote Scripts in Ableton Live? I've seen references online to a hidden Python console, but no documentation on how to open it, if it would even help ...
1
vote
1answer
107 views

Line and column in Javascript Error event attributes

I've decided that there are some errors which I don't want to go to the browser error handler. But I still want to know about them. In my actual code I have a function which stores the errors in a ...
1
vote
4answers
149 views

How to substitute a content of certain javascript reference with local script for debugging?

I need to debug jasvascript loaded by page. Loaded page are not locally placed. Loaded js is packed. I want to substitute it with unpacked version. Is there any tricks or browser options to make it? ...
1
vote
3answers
427 views

Microsoft Script Debugger does not display any information after error

I'm trying to debug a Javascript error which only occurs in Internet Explorer. I have Microsoft Script Debugger installed, and have used it successfully in the past. On this error, though, I select ...
1
vote
2answers
2k views

How do I check if the python debug option is set from within a script

If I'm in debug mode, I want to do other stuff than when I'm not. if DEBUG: STORED_DATA_FILE = os.path.join(TEMP_DIR, 'store.dat') LOG_LEVEL = logging.DEBUG print "debug mode" else: ...
0
votes
3answers
68 views

IE Fixes - Conditional Comment Script will not execute

I'm trying to build a website. I have it displaying correctly in every browser except IE versions 8 and lower. IE renders blue boxes around my img's that are also anchors. I can get rid of this by ...
0
votes
1answer
16 views

Finding Software [closed]

How do I create a bat file to find out where a specific software is on a network of 6000 Workstations?
0
votes
1answer
55 views

Using debug versions of YUI2 components in YUI3

I am using YUI 2 components in YUI3 using the standard way YAHOO has provided to get accesss to the YAHOO namespace. However when YUI3 loads the yui2 components it loads teh min version which is no ...