Stoppt die Vorratsdatenspeicherung! Jetzt klicken &handeln! Willst du auch an der Aktion teilnehmen? Hier findest du alle relevanten Infos und Materialien:

Archived entries for debugging

Debug Email Messages In Drupal

Eine praktische Lösung für das Debuggen von E-Mail Nachrichten mit Drupal ist der Einsatz von Devel und hook_mail_alter().

function module_name_mail_alter(&$message) {
 dpm($message);
 // If you don’t want email messages to go out of your website at all
 $message['to'] = '';
}

thx

prettyPrint JavaScript debugger

James Padolsey stellt prettyPrint vor.

“prettyPrint” is an in-browser JavaScript “variable dumper” similar to ColdFusions’s cfdump. It enables you to print out an object of any type in table format for viewing during debugging sessions. In combination with Firebug, “prettyPrint” will make you the best-equipped JavaScript debugger on earth! (not guaranteed)

JavaScript Debugging

Bei A List Apart gibt es einen schönen Artikel über JavaScript Debugging.

When used effectively, JavaScript debuggers help find and squash errors in your JavaScript code. To become an advanced JavaScript debugger, you’ll need to know about the debuggers available to you, the typical JavaScript debugging workflow, and code requirements for effective debugging. In this article, we’ll discuss advanced debugging techniques for diagnosing and treating bugs using a sample web application.

MooTools JavaScript Console

MooBugger ist ein MooTools basiertes Bookmarklet. Das Ergebnis ist eine Firebug ähnliche JavaScript console.

Debugging PHP

Brandon Savage erklaert einige Debugging Techniken fuer PHP Entwickler.

Teil 1 beschaeftigt sich mit var_dump(); print_r(); und var_export(); Ich fand es ganz spannend da ich var_export(); eigentlich nie verwende.

Teil 2 behandelt XDebug.



Copyright © 2004–2009. All rights reserved. – Impressum

RSS Feed. This blog is proudly powered by Wordpress and uses Modern Clix, a theme by Rodrigo Galindez.