Announcing the May 2011 Zend Framework Bug-Hunt
ralphschindler |
1 comment |
Wednesday, May 25, 2011
For those who haven't put the reoccurring event in their calendar, this announcement is for you: Zend Framework Monthly Bug-hunt is here again! Tomorrow, Friday and Saturday of May (the 26th, 27th and 28th 2011), we'll be hosting our monthly bug hunt. For those of you unfamiliar with the event, each month, we organize the community to help reduce the number of open issues reported against the framework.
[…]
Zend Framework 1.11.6 and 1.10.9 Released
weierophinney |
9 comments |
Friday, May 6, 2011
The Zend Framework team announces the immediate availability of Zend Framework 1.11.6, our sixth maintenance release in the 1.11 series, and a simultaneous release of 1.10.9, a security fix release. 1.11.6 includes more than 60 bug fixes and may be downloaded from the Zend Framework site.
[…]
Announcing the April 2011 Zend Framework Bug-Hunt
ralphschindler |
4 comments |
Wednesday, April 27, 2011
Now that you're done paying the Tax Man (for the North Americans reading this blog post), it's time to pay it forward by helping an open source project close some issues! For those who haven't put the reoccurring event in their calendar, this announcement is for you: Zend Framework Monthly Bug-hunt is here again! Tomorrow, Friday and Saturday of April (the 28th, 29th and 30th 2011), we'll be hosting our monthly bug hunt. For those of you unfamiliar with the event, each month, we organize the community to help reduce the number of open issues reported against the framework.
[…]
Book Report: Easy PHP Websites with the Zend Framework
Cal Evans (Editor-in-Chief) |
7 comments |
Friday, April 15, 2011
Jason Gilmore recently released a new book on developing websites with Zend Framework. Click on in, let’s take a look at it, shall we?
[…]
Zend Framework 1.11.5 Released
weierophinney |
14 comments |
Thursday, April 7, 2011
The Zend Framework team announces the immediate availability of Zend Framework 1.11.5, our fifth maintenance release in the 1.11 series. This release includes a dozen bug fixes. You may download ZF 1.11.5 from the Zend Framework site.
[…]
Using the Plurk API with PHP
Vikram Vaswani |
1 comment |
Thursday, March 24, 2011
Plurk is a popular micro-blogging site that allows users to quickly and concisely post status updates, news and event streams. It also comes with a JSON-based Web service API that allows developers to programmatically add, search and manipulate Plurk content. This article shows you how to quickly and efficiently connect your PHP application to Plurk using Plurk's PHP library.
[…]
Announcing the March 2011 Zend Framework Bug-Hunt
ralphschindler |
0 comments |
Tuesday, March 22, 2011
For those who haven't put the reoccurring event in their calendar, this announcement is for you: Zend Framework Monthly Bug-hunt is here again! This Thursday, Friday and Saturday of March (the 24th, 25th and 26th 2011), we'll be hosting our monthly bug hunt. For those of you unfamiliar with the event, each month, we organize the community to help reduce the number of open issues reported against the framework.
[…]
Improved Test Assets for Zend_Tool Generated Projects in ZF 1.11.4
ralphschindler |
1 comment |
Wednesday, March 9, 2011
As of the 1.11.4 release of Zend Framework, the generated testing stubs just got a little saner. At the time of Zend_Tool's initial release, the standard application structure you are familiar with today was just being released as well with Zend_Application. In addition, the testing controllers from this newly standardized application layer, were too, in their infancy. In short, we had known that the stubs being produced in the tests/ directory were incomplete, but we were waiting to see if there were improvements to Zend_Test on the horizon that might improve the way controllers were tested- and to see if these new methods would become best practices.
[…]
mysqli_connect_errno and mysqli_connect_error
sconnall |
0 comments |
Monday, March 7, 2011
Excellent tutorials!!
I'd also like to add that it appears that the mysqli_connect_errno() and mysqli_connect_error() now have object access formats.
Here are the PHP manual links:
http://us2.php.net/manual/en/mysqli.connect-errno.php
http://us2.php.net/manual/en/mysqli.connect-error.php
The following code in the tutorial can be replaced with the object access representations:
OLD format:
// check for connection errors
if (mysqli_connect_errno()) {
die("Unable to connect: ".mysqli_connect_error());
}
NEW format:
// check for connection errors
if ($mysqli->connect_errno) {
die("Unable to connect: ".$mysqli->connect_error);
[…]
I'd also like to add that it appears that the mysqli_connect_errno() and mysqli_connect_error() now have object access formats.
Here are the PHP manual links:
http://us2.php.net/manual/en/mysqli.connect-errno.php
http://us2.php.net/manual/en/mysqli.connect-error.php
The following code in the tutorial can be replaced with the object access representations:
OLD format:
// check for connection errors
if (mysqli_connect_errno()) {
die("Unable to connect: ".mysqli_connect_error());
}
NEW format:
// check for connection errors
if ($mysqli->connect_errno) {
die("Unable to connect: ".$mysqli->connect_error);
[…]
Zend Framework 1.11.4 Released
weierophinney |
3 comments |
Thursday, March 3, 2011
The Zend Framework team announces the immediate availability of Zend Framework 1.11.4, our fourth maintenance release in the 1.11 series. This release includes almost 40 bug fixes. You may download ZF 1.11.4 from the Zend Framework site.
[…]

