Zend and S&S support local PHP user groups, and will be providing a limited
number of free ZendCon passes for user groups to distribute to active members
who might not have the financial wherewithal otherwise.
30
2009
Contest: Free ZendCon Passes for User Groups!
29
2009
New sfAmfPlugin release
I have just released a new version of my Symfony-Plugin sfAmfPlugin. The new version 1.4.0 has the following changes included:
- Added an error handler function. All Errors will now be delivered as an exception (thanks to raphox for this)
- Fixing problem with associative array values
- Updated SabreAmf to version 1.3.0
- Added correct content type support, you should now use the handleRequest method in your actions as shown in the documentation
You can now use the the plugin in your actions like this:
public function executeAmf(sfWebRequest $request) {
sfAmfGateway::getInstance()->handleRequest();
return sfView::NONE;
}
There is a lot of stuff coming for the next version of the plugin, so stay tuned ![]()
26
2009
Accepting Credit Card Payments with OXID eShop CE and Authorize.Net
The OXID shopping cart is built on an extensible, object-oriented PHP/MySQL architecture that makes it easy to “plug in” new modules and functions. One common function involves integration with third-party payment gateways, and the OXID platform provides various developer hooks to assist in this task. This article shows you how to begin accepting credit card payments for your products by writing a custom PHP module that reads credit card information from an OXID order basket and performs payment transactions using the Authorize.Net payment gateway.
25
2009
D&D 3.5 SRD
The guys over at System Reference Documents have packaged up the D&D 3.5 SRD into a Zipped HTML package. I put a copy of the D&D 3.5 SRD on this site. Thanks guys!!!
25
2009
Using Apache2 ITK Multi-Processing Module on Linux
Those familiar with configuring Apache and PHP to run together, have
been introduced to the idea of Apache’s Multi-Processing Modules ( MPM ).
Basically Apache2 allows you to use different methodologies in how it
manages the various connections coming in. One of the more efficient
methods uses threads; however, when running PHP you’ve been restricted
to using the prefork MPM module since some extensions are not written in
a way that will enable work in thread safe mode.
24
2009
PHP and Java: Using Java Print Service with Zend Server Community Edition
If one were to survey the extensions available in PHP one might come to the conclusion that we actually lived in a paperless society. However, we all know that isn’t true. So why does PHP not have good printer support? One option that explains why this might be the case is simply that printing documents is contrary to what PHP does well; handle short requests as quickly as possible. Printing is not conducive to this.
But what if you still need to have printing support in your PHP application? With Zend Server, Zend’s integrated PHP application stack, the answer might be not what you were expecting. Use the PHP Java Bridge, available in both the community and commercial editions of Zend Server.