Archive for February 8th, 2007

Zend Developer Zone: Zend_Acl / Zend_Auth example scenario

On the Zend Developer Zone, there’s a new tutorial covering the use of the Zend_Acl and Zend_Auth modules in the Zend Framework to create a simple user login and authentication system from Simon Mundy.

After submitting the initial example of how Zend_Auth and Zend_Acl could be implemented Gavin pointed out areas that weren’t really addressed in my proof of concept and it could potentially confuse newcomers to the way MVC is utilised. I’d like to clarify that post to a) Address those concerns and b) see if there’s any constructive criticism of the process that could benefit everyone.

He sets up the site layout (including where the actions lie) and defines some of the access rules the script will follow. From there, he creates a bootstrap file and an index.php to work with it. On top of this, he builds the key piece - the Auth.php - to handle the validation of the users.

Continue Reading · Add comment

Directives, Access, and More with the Oracle HTTP Server

In our fifth article of a five-part series that covers managing the Oracle HTTP Server OHS you will learn how to handle aliases index directories find out the status of the server and more. It is excerpted from chapter five of the book em Oracle 1 g Application Server Exam Guide em written by Sam Alapati McGraw-Hill 2 6 ISBN 7226271 ….

Refurbished and Used Networking Equipment Network Liquidators sells refurbished and used networking equipment for up to 95% off list, with a 1 year warranty. We buy and sell top brands like Cisco, Extreme, Foundry, and more. Call us for best pricing.

Continue Reading · Add comment

JSLabs Blog: 5 tips for creating high performance web apps

In this new post, Justin Silverton shares a few helpful hints for creating high performance applications in PHP:

  • use multi resultset queries to your database rather than many small ones
  • page/object caching
  • gzip compression
  • tune your web server
  • Don’t save performance testing for the end of the project

Each of the items has explanation and links to more details on them (including links to three difference object caching applications - ion cube, alternative PHP cache, turck MMCache).

Continue Reading · Add comment

Community News: PHP Ranks Fourth in TIOBE Programming Community Index

As reported by the International PHP Magazine website, the results of the latest TIOBE Programming Community Index are in for the month and PHP is on the rise.

PHP has moved back up to take its spot back at #4 with (Visual) Basic falling back down to #5. As the trends graph shows, PHP had a sharp spike back up to overtake VB starting with the new year. If it continues the climb, it could be back up to levels it was during the middle of last year.

The TIOBE Programming Community index gives an indication of the popularity of programming languages. The index is updated once a month. The ratings are based on the worldwide availability of skilled engineers, courses and third party vendors.

Continue Reading · Add comment

Alexander Netkachev’s Blog: How to use Zend Framework Controller/Action approach?

Continuing on from an earlier discussion about the Zend Framework and form submission and handling, Alexander Netkachev has come back to talk a bit more about the Controller/Action approach.

I have a few discussions here about the question I opened a couple of days ago: how the standard form processing is related to the Controller/Action idea and how developers that are creating sites with the standard Folder/Page approach can use Zend Framework’s Controller/Action approach.

What came out of the discussions were three points - use the Controller/Action model to your advantage, use your own forms but use RewriteRouter to make them work, or use the Folder/Page mentality instead.

Continue Reading · Add comment