News Feed
Jobs Feed
Sections

Recent Jobs

News Archive
feed this:

NETTUTS.com:
10 Biggest Milestones in Web Development
November 25, 2008 @ 11:15:25

NETTUTS.com has posted their top ten list of some of the largest milestones in web development - one of which is the release of PHP.

Some believe the progression of the great World Wide Web to be a travesty, others a godsend. Regardless, the Internet has evolved over the past few decades, and is in many ways better for the web developer. New technologies have come about that have made web development much easier to get started in, and ultimately more fun.

Here's a few from their list:

  • Linus Torvalds Creates the Linux Kernel
  • The Open Source Movement Officially Starts
  • PayPal is Founded
  • Firefox is Released
  • and, of course, PHP is Released by Rasmus Lerdorf
0 comments voice your opinion now!
milestone development web linux opensource paypal firefox



Ivan Guardado's Blog:
How to debug PHP code
October 14, 2008 @ 08:44:17

Ivan Guardado has posted a recent tutorial looking at debugging your PHP code with the help of a popular tool - FirePHP (that interfaces with an equally popular Firefox extension, Firebug).

Nowadays, the code debugger is a tool that has almost all programing environments which allows you to watch the internal work of your applications and finding errors at run time for a easy way. The trouble is when you are working in a client-server architecture model, because from where you send the request (client) can not access the code hosted on the server.

He points out FirePHP as one that doesn't require this sort of installation. Included is a quick tutorial on getting it up and running for your development environment as well as the output formats and how to handle the output you want for debugging only.

0 comments voice your opinion now!
firephp firebug firefox extension debug browser


Developer Tutorials Blog:
Learn regular expressions in PHP
May 01, 2008 @ 08:48:05

On the Developer Tutorials blog, Akash Mehta offers some suggestions of resources and methods for learning how to use regular expressions in your PHP applications.

When it comes to quickly dealing with large blocks of data, batch processing operations or screen scraping, regular expressions are often the most effective solution. There's just one problem, though - learning them can be as hard as learning a new language altogether. Here's how to get off to a flying start.

He points you first in the direction of the preg_* functions then towards a few examples (like with mod_rewrite) and tools to help you understand how things match, like the regex tested extension for firefox and the regular expression cheat sheet on ILoveJackDaniels.com.

0 comments voice your opinion now!
learn regular expression preg firefox extension cheatsheet


Evert Pot's Blog:
PHP Quicksearch in Firefox
November 27, 2007 @ 12:51:00

Evert Pot has posted a handy tip for Firefox users when it comes to searching the PHP.net manual for a specific function - an addition to the Quicksearch.

If you're a PHP developer, you'll likely often need to open up php.net to find out the [the order of ;)] arguments for a function. Generally i just type, php.net/functionname, but if you want to save 4 more keystrokes you can easily add a quick search.

He's included a screenshot of the interface to add it as well as the location to give - a URL pointing to the search page on the php.net website that looks in the "quickref" category for a match.

0 comments voice your opinion now!
quicksearch firefox website url function quickref quicksearch firefox website url function quickref


Davey Shafik's Blog:
Debugging from Firefox with xdebug and Komodo
November 16, 2007 @ 12:03:00

Davey Shafik has shared a method he's come up with for debugging directly from Firefox with the help of xdebug and the Komodo IDE.

In an effort to switch away from Zend Studio I have been trying out Komodo (again) [...] One of the last barriers to switching, has been to emulate the Zend Studio Toolbar for Firefox (also available for IE) which lets you do lots of great things, from Profiling to Debugging every page. I personally use it mostly for debugging single pages, and forms, as well as for end to end PHP and AJAX debugging - so this was the feature I was mostly looking to emulate.

He found his way through a few small additions to his php.ini file that allow Komodo to connect directly to the remote server and make debugging as easy as adding "?XDEBUG_SESSION_START=1" to the URL of whatever page you're on. He's also made a bookmarklet that turns it on for you as well.

0 comments voice your opinion now!
debug firefox komodo xdebug bookmarklet debug firefox komodo xdebug bookmarklet


Jim Plush's Blog:
MYBIC GOES 1.0! (yes, yes with firebug debugger!)
June 13, 2007 @ 13:36:00

Jim Plush passed on a note today about the latest release of his PHP & Ajax framework, MyBic, reaching the 1.0 milestone:

I'm proud to announce to official 1.0.0 release of the MyBic AJAX framework. MyBic has been stable in production for months now with 0 memory leaks and 0 outstanding bugs known to date. MyBic has been successfully flying in some of the worlds top aircraft with 0 supervision in kiosk based devices.

Major advancements for this release include the addition of support for the Firebug debugger with a Firefox extension bundled in. You can grab this latest update from the project's website.

0 comments voice your opinion now!
mybic framework ajax debugger firebug firefox extension mybic framework ajax debugger firebug firefox extension


Derick Rethans' Blog:
Starting Xdebug's debugger with Firefox
April 04, 2007 @ 07:41:00

Today, Derick Rethans quickly points out a handy tool to interface with the PHP debugger package, XDebug via everyone's favorite browser - Firefox.

I was recently searching for sites that mention Xdebug and found a FireFox 2 extension that allows you to trigger Xdebug's debugger without having to use XDEBUG_SESSION_START as parameter. The extension works by adding the XDEBUG_SESSION cookie itself. You can configure which IDE key it uses.

The extension, XDebug Helper (currently in 0.1) makes the task of starting and stopping the XDebug debuugger as simple as a click of a button.

0 comments voice your opinion now!
xdebug debugger firefox extension helper xdebug debugger firefox extension helper


Jim Plush's Blog:
PHP Meet Mr. FireBug - PHP Debugging for Web 2.0
March 07, 2007 @ 09:12:00

Jim Plush has posted an offifical release announcement about his latest contribution to the PHP community - a debugging tool combining PHP (through the myBIC framework) and the Firefox FireBug extension.

I put together a couple pieces of technology to give the PHP community a debugger/profiler that should make life easier in the "web2.0" world. Are you tired of echo'ing print statements in your ajax calls? Writing to log files? Firing up big ol debuggers just to see what the value of some array is? Well look no further than the new MyBic PHP Debugger.

The tool is a smaller part of his larger MyBIC framework and can do things like writing log files, echo information back out to the screen, and communicate information back out to the Firefox user. There is a standalone version of FireBug that will be posted for those that don't want to have to install an entire framework to use it.

Keep an eye out (here and on his blog) for the links to the release when it's posted. In the meantime, you can check out a screencast [mov] of the package in action or just the screenshots in the blog entry.

0 comments voice your opinion now!
firebug debugger tool firefox extension screencast screenshot release firebug debugger tool firefox extension screencast screenshot release


Terry Chay's Blog:
Clever HTTP
February 15, 2007 @ 08:19:00

With the recent release of a new Firefox/PHP combination extension, several developers were interested in just how it all worked. One such developer is Terry Chay who has posted about it to his blog today after looking into how it all fits together.

The standard way of debugging in PHP involves just echoing shit to the screen. The fact that PHP is a scripting language makes this an excellent way of debugging on the web. But what happens when doing this breaks your site?

That's where FirePHP comes in - it sends along a special request from your PHP script (as fired off by special code you insert) to include debugging information inside a different part of a "multipart/mixed" message. Terry also includes some of his sample code (including a custom version of the software) that he used to get things working. Check out the screenshot for the results.

0 comments voice your opinion now!
http firephp firefox extension example screenshot multipart message http firephp firefox extension example screenshot multipart message


Community News:
FirePHP Firefox PHP Extension
February 14, 2007 @ 12:04:26

As mentioned on dzone.com, there's an extension for Firefox, FirePHP, that allows you to get a bit more info on what your PHP scripts are up to.

FirePHP allows you to take a deeper look at all the work your PHP code does to generate that page you are currently looking at in your Firefox browser.

Just install the FirePHP Firefox extension, PHP PEAR package and add a few lines of code to your PHP application to get started. You will see a "FirePHP" tab in your Firebug extension to bring your PHP backend logic to your fingertips!

You can check out screenshots of it in action, a demo of its use, and of course, download the latest version all from their site. It works either as a separate window or attached in your browser and, based on an XML capabilities file, works with your application to provide details about your scripts.

1 comment voice your opinion now!
firefox firephp extension monitor request integrate firefox firephp extension monitor request integrate



Community Events









Don't see your event here?
Let us know!


application code release conference zendframework example security job package PHP5 mysql cakephp zend developer framework releases PEAR database ajax book

All content copyright, 2009 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework