errors

I have a JS Lint question

Why do I get these errors? Problem at line 329 character 60: Do not use 'new' for side effects. new widget.StyledDropdown(dojo.byId("sTitle")); Problem at line 330 character 61: Do not use 'new' for side effects. new widget.StyledDropdown(dojo.byId("sSuffix")); Problem at line 336 character 57: Do not use 'new' for side effects. tr...

Facebook API domain errors documentation

Hi! Anybody knows where I can find documentations of frustrating domain errors from facebook API? Like: error domain 1000, 603, 3, 601, etc..? I can not find exact explanations what they means. I would help to debug API requests. Thank You. ...

Why doesnt the code from the Android SDK tutorials work out of the box?

Am I missing something here? I follow the instructions exactly on this page (and some of the other tutorials) but they always seem to be missing some key information as they dont work out of the box I added a bunch of packages that seemed like were missing, but now I'm stuck. http://developer.android.com/resources/tutorials/views/hell...

Exceptions/errors handling library for PHP

Is there any PHP library for handling exceptions/errors(including fatal) in PHP? It should be very configurable, support log to file, send Emails, and have integration with different browsers console. ...

iphone in-app purchase: On error, whose responsibility is notifying the user?

I have a complete in app purchase solution but am wondering if I am handling errors correctly. I handle errors using code similar to the Apple example here; - (void) failedTransaction: (SKPaymentTransaction *)transaction { if (transaction.error.code != SKErrorPaymentCancelled) { // Optionally, display an error here. } ...

how to disable custom errors only for a specific IP address

Hi, Does anyone have any idea how to disable asp.net custom errors only for a specific ip address? this will ease debugging exceptions on my server from my office.. Thanks in advance ...

what is wrong with this jquery script?

What is wrong with this jquery script? It doesn't seem to be functioning properly: there are no syntax errors (I checked). $(document).ready(function() { $('.statuses').delegate('.vote_up', '.vote_down', 'click', function(e) { e.preventDefault(); //get the ide var the_id = $(this).closest('.message').attr('i...

How to see the error and still keep the program on in the Python shell?

I know try/except can handle errors in my program. But, is there a way of making the error be displayed in the program execution, be ignored and let the execution go on? ...

Javascript Prototyping Error

I've been looking into Javascript prototyping recently, can understand the theory, and believe it can be very useful to my understanding of the language, but can't quite get the following to work... var player = function(){//Declarations here}; var super_player.prototype = new player(); Every compiler/checker flags a 'missing semicolo...

Adobe Air SDK 2.0-2.5 Errors

I downloaded the Air 2.5 SDK and get the following Errors: 1-Design mode could not load aircore.swc. It may be incompatible with this SDK, or invalid. 2-Design mode could not load applicationupdater_ui.swc. It may be incompatible with this SDK, or invalid. 3-Design mode could not load applicationupdater.swc. It may be incompatible wit...

why are there so many JavaScript errors on stackoverflow.com itself?

I'm using IE8. I noticed a lot of errors popping up whenever I visit stackoverflow.com. master.js line: 1 'jQuery' is underfined question.js Line: 1 Object expected ask Line: 25 '$' is undefined global-login.js Line: 154 Object expected ask Line: 141 Object expected ask Line: 149 'jQuery' is undefined tageditor.js Line: 1 Objec...

C# method call error

Yes I'm new to C# but I'm a decent Java Dev. OK Ive got a project in visual studio with a program.cs file and a Class.cs file. All I'm trying to do is make a call to the method in Class.cs in Program.cs.... I have 1 frustrating error. The name 'mymethod' does not exist in the current context. All the other code builds fine if I comment o...