|
Sponsored Link
|
PHP has several new documentation features that the community should be aware of: pman - PHP man pages $ pear install doc.php.net/pman$ pman strlen (this example displays a local textual version of the strlen docs) Enhanced CHM - contains user notes (over 25,000) This additional CHM file is downloadable Online Documentation Editor - allows everyone to edit the PHP manual URL: https://edit.php.net/Every manual page will link to it in the futureIncludes an IRC window to the #php.doc channel, so let's talk...
On the Techie Talks blog today there's a post from Idrish Laxmidhar with a few simple reminders of things you can do to help with the basic security of your PHP applications, mostly surrounding filtering and escaping.The list includes some of the basics like:
Avoiding $_REQUEST when possible because of the ambiguity of where the information could come from
Keep register_globals off (thankfully a default!)
Checking values for specific data types before using them
Filtering user input
Disabling the error...
In a new post today Kevin Schroeder points out a new feature in the Zend Server project (version 5.5, beta) that helps make deployment simple for your site. He also includes a "getting started" guide to show it in action.We have announced that we are making the beta for our new deployment feature in Zend Server 5.5 beta, available for download. It's not feature complete (there are some new features being worked on), but it provides the functionality needed for the 90% of us who do not have the need to...
On the Symfony blog Fabien Potencier has a new post talking about a change in the support structure for developers wanting to get help with either Symfony1 or Symfony2 - a split in the mailing list to help make things a bit easier to split out.Now that Symfony2 is just around the corner, we need to better organize community support for both symfony1 and Symfony2. As more people start using Symfony2, the user mailing-list is becoming more and more difficult to follow. [...] After an opinionated discussion...
The Voices of the ElePHPant podcast has posted their latest episode today, another interview from the Microsoft Jump In! Camp - an interview with Paul Jones, lead architect of both the Solar and Aura frameworks.Cal and Paul talk about the Aura project, a PHP 5.3 framework and how it relates to some of the base work that the Solar framework provided for it. He mentions the work being done on the database components to work with SQL Server and how some of the coming SQL Server features will be...
So, what started out to be a post or two on some of the important things to consider about communication in open source projects, has now turned into it's own little mini-series. In part one I talked about some of the important things to consider when it's you, the organizer, talking to the people that come in and want to get involved with your project. In the second part I covered some of the organizer-to-organizer communication techniques to keep the project running smoothly.
In this part I'm going to...
Popular posts from PHPDeveloper.org for the past week:9Lessons: Import GMail Contacts Google OAuth Connect with PHP
Warren Tang's Blog: PHP Unit Testing & Mock Objects with SimpleTest plugin for Eclipse
Test.ical.ly Blog: PHP 5.4 with traits, Doctrine 2.2 and then Symfony3?
Nicolas Grekas (on Github): Improved handling of HTTP requests in PHP
Josh Adell's Blog: Neo4j for PHP
DevShed: Implementing the ArrayAccess Interface - PHP
PHP and Me Blog: Use Phing to Update your SVN-Version-Controlled Website...
Kafka is a distributed publish-subscribe messaging system developed at LinkedIn, designed to support a very high throughput, persistent messages and parallel loading into Hadoop. A proposal has been submitted to make Kafka an Apache incubator project.
Putting in some new content for RESA
On DevShed today there's a new tutorial showing you how to integrate Facebook commenting with your PHP application via the Facebook Connect API.Facebook comments are a great way to optimize your site for social media and add a level of user-engagement to you site. Quality website comments can increase your website's credibility, as well as its traffic. This tutorial will teach you how to use Facebook's API Connect to integrate comment boxes on your website in a few simple steps, utilizing a little PHP...
The Voices of the ElePHPant podcast has posted its latest episode today - an interview with Keith Casey, a part of the web2project team and the php|architect folks that brought you php|tek. This podcast was recorded at the SQL Server Jump In! Camp.They talk about the web2project project's desire to be a "drop in" solution even when they have SQL Server as their database. They talk about the challenges in supporting SQL Server and where (what environment) people are using web2project.You can listen in the...
As was mentioned by Zend late yesterday, the registration for this year's Zend/PHP Conference have officially opened!The 7th Annual Zend PHP Conference (ZendCon) will take place October 17-20, 2011, In Santa Clara, California. ZendCon is the largest gathering of the PHP Community and brings together PHP developers and IT managers from around the world to discuss PHP best practices and explore new technologies.The Early Bird pricing will last until September 10th saving you about $200 USD off the price of...
In an effort to get some real feedback from the community about the state of PHP and what they think it needs, Sean Coates asked on Twitter for people to respond with their suggestions as to what could help make PHP better and what the project itself needs.PHP's intentional stagnation is eating away at me. I'm working on a list of things I think #PHP needs. What's on your list? Tag it #phpneedsThere's been a great response already with suggestions ranging from features the language itself needs out to...
As Derick Rethans notes in his latest post, the Xdebug project is now on github and can be found under his account.I've just opened my Xdebug repository on github. Importing my old SVN repository was a bit of a task. With the help of Ole Marius Smestad I managed to cook up a bash script to import and fix-up the repository. In the meanwhile I've learned more about git than I ever wanted to know, but still not enough.Besides the source for Xdebug itself, you'll also notice repositories for the Xdebug...
In case you missed it, this post is a continuation of another post looking a some of the things I've learned in the time I've spent as an open source project organizer for Joind.in. In this second post I'm going to keep looking at communication and the role it plays in the project. The focus will be a little bit different, though - this time it's more about internal communication.
Keeping all of the contributors to your project informed and involved is a task to itself, but this should be only half of...
Here's what was popular in the PHP community one year ago today:Fawad Hassan's Blog: CRUD using jQuery and Codeigniter - I
Fabien Potencier's Blog: Iterator or IteratorAggregate?
Arun Gandhi's Blog: 15 methods to speed up PHP based website's performance
Chris Hartjes' Blog: Fun with custom Zend_Views
Pingdom.com: Exploring the software behind Facebook, the world's largest site
Marco Tabini's Blog: Software, APIs and all the king's men
Symfony Blog: Symfony2 Online Conference
Brian Swan's Blog: Accessing...
Xdebug on github
London, UK
Wednesday, June 22nd 2011, 21:47 BST
I've just opened my Xdebug repository on github. Importing my old SVN repository was a bit of a task. With the help of Ole Marius Smestad I managed to cook up a bash script to import and fix-up the repository. In the meanwhile I've learned more about git than I ever wanted to know, but still not enough. I maintain that, although git is very powerful, it is also a lot less intuitive than SVN (or even CVS).
In any case, Xdebug is now on...
On the Knp Labs site there's a recent post showing you how to use Capifony (a tool designed for use with Symfony projects) to deploy your Symfony-based applications in a few easy steps.Deploying should be an active part of your development process, but not something that gives you a headache. If deploying your entire application takes more than one command or doesn't put a smile on your face, you should keep reading. NOTE: This post will specifically cover how to deploy your Symfony2 application, but the...
On the Zend Developer Zone Cal Evans has a new post looking at an event Microsoft is holding this week, the SQL Server Jump In! Camp, and who's there and what's going on:This is a different kind of Camp, the focus is on writing code, not necessarily learning new techniques. That is not to say that there isn't learning, showcasing and demoing going on, but it is obviously not the focus of the week.Projects that are represented at the camp include PEAR, Frapi, CakePHP, Zend Framework, VoceComm and Agavi....
On the Symfony blog they've posted the latest in their "Getting Easier" series looking at some of the things being done for the framework to help make it more appealing for those just coming in. In this new article they look at the new interactive generators that help you create the code you'll need to set up your bundles without a lot of manual effort.symfony1 has generators for all those things, but until now, Symfony2 was not very good at generating code. Well, that's "fixed" now, thanks to the new...
|
|