Archive for May, 2006
PHP Developer - May 31st, 2006
The symfony project keeps getting bigger and bigger all of the time, and they’ve just expanded even further with the release of a new symfony-based application for their own site - a code snipped library, a.k.a “Snipeet”.
Is there a better way to learn a new language - or a framework - than by looking at showcase apps? Just like us, you probably don’t want to spend hours reading the manual. You prefer to find a code snippet that does something close to what you need, copy it, have it run, and then customize it for your own requirements. You try to understand only what must be adapted, to keep your mind clear and focused on your primary task.
Taking this mentality out to the next step, the team created the code snippets section to help find those little bits you need to bridge the gap in your code. And, of course, not only can you use the tool to view and contribute snippets to the symfony project, but you can also grab the code for the self-contained version of the project as well.
(0 comments)
Continue Reading ·
PHP Developer - May 19th, 2006
According to this forum post on the NeoSmart message boards, there’s a new “0-day vulnerability” that they’ve discovered in the phpBB message board system.
Our research team has discovered a new (aka 0-day) vulnerability in phpBB, that affects all existing versions (including the Olympus CVS as of May 18th, 2006).
This phpBB security vulnerability has been scaled at a threat level of 6/10; allowing normal members access to privileged and restricted-access content on a phpBB forum. The bug lies in the email notification system and can be used to track comments made on any hidden posts that were once user accessible.
Since this bug has just broken today, there’s no response from phpBB as of yet with a patch, but expect it soon if this issue is as important as the post mentions.
(0 comments)
Continue Reading ·
PHP Developer - May 19th, 2006
The Zend Developer Zone has a new post covering the leadership change that just happened in the world of the Zend Framework. Mike Naberezny has moved forward to pursue other things and Jayson Minard has stepped up to fill the spot left. The post also shares the (lengthy) email that Jayson sent out to the list getting all of his ideas and intentions out in the open.
Hello everyone, I wanted to quickly introduce myself as the new lead for the Zend Framework for Zend. I will be stepping into Mike’s role in working within the framework development team, and coordinating the effort as a whole. Therefore, let me tell you a bit about myself and my thoughts on this project.
Jayson goes on to talk about himself a bit, his programming past and some of his more current work as the Editor in Chief of the Zend Developer Zone. He also mentions some of the future plans for the framework, including:
- the standardization of the proposal process
- a more consistent release model
- mapping out the scope/purpose/exclusions for each part of the framwork
- plans to handle the growth of user feedback on the project
- and using the Zend Developer Zone to share more information/updates/proposals/etc pertaining to the project
(0 comments)
Continue Reading ·
PHP Developer - May 19th, 2006
The AFUP (Association Française des Utilisateurs de PHP) has officially issued their Call for Papers for their upcoming conference - Forum PHP 2006.
From PHP.net: we are looking for the best French speaking experts, who want to share their know-how and enthusiasm. This two day conference features one technical day, with the most advanced PHP techniques and a business day, with case studies and examples of successful projects.
This year’s conference will be taking place in Paris at the SNHF (Société Nationale d’Horticulture) on Thursday and Friday (the 9th and 10th) of November 2006. You can get more of the details concerning what needs to be in the proposals and how to submit them from this post on the AFUP website.
(0 comments)
Continue Reading ·
PHP Developer - May 19th, 2006
In this new article from the PHP DevCenter on the O’Reilly site today, they provide an introduction to a concept that PHP developers just starting out will definitely need for their future applications - sessions and state management.
MVC Frameworks, such as WASP, provide a solid jumping-off point for entry-level programmers to produce strong, well-formed code. The framework simplifies such things as creating a page (using a kind of page object) and creating or searching for data (using database table objects).
However, probably the most difficult concept for novice PHP programmers to grasp is handling their application’s state and session data. This article will address that issue by providing a simple strategy for state management using the WASP framework.
They start</a. with the difference between session state and page state, and include examples for each. Both examples include code to illustrate the point and some explaination for it each step of the way. All of the sample code is written within the WASP framework, so if you’re unfamiliar, you might want to check out their previous article for an introduction.
(0 comments)
Continue Reading ·