You are here:Home arrow Home arrow PHP
  • Narrow screen resolution
  • Wide screen resolution
  • Decrease font size
  • Default font size
  • Increase font size
  • default color
  • green color
  • blue color

PHP: Native code, Zend Framework and RapidPHP

Super slow website on IE6?

Here is a quick advice on fixing performance related IE bug on your websites. I've discovered this problem while working on a client's website.

The Problem: Site is being slow at all times only in Internet Explorer 6, not matter whether it is latest version (SP3) or older.

Lighten the load for Zend Framework Application - Part I

This is one of the series of articles devoted to different aspects of optimizing a web application powered by Zend Framework, for best performance.

In part 1, we take a look at the server requirements for running a Zend Framework application and the key server settings that effect performance in production environment.

This article in a form of general advices provides an overview of methods as well as recommendations to run high traffic websites on a middle priced virtual private server.

Warning: this article contains Linux shell commands. Use at your own risk.

Serving XHTML in Zend Framework App

Serving XHTML is often misunderstood by PHP developers. Frontend engineers simply include the XHTML doctype to their documents, without actually serving document as XHTML. This triggers majority of the browsers to treat such pages as “tag-soup”.

If you really care for faster XHTML rendering, you can get its benefit by using content negotiation, thanks to the new controller plugin we have for you.

You should note, however, that your pages should be XHTML compliant and validate against XHTML validators like our own XHTML validator. Otherwise, XHTML supporting browsers will only display errors instead of actual content! If you are sure that your frontend designer is a good XHTML writer, then you should be safe (still, it never hurts to validate first).

Enable your Zend Framework App with Conditional GET! (Make it green)

In this article I'll show you a simple approach to enable your Zend Framework application saving lots of precious bandwidth, and thus, making it more end-users friendly, and save on bandwidth costs.

This technique involves HTTP conditional GET. This is basically a feature of the HTTP protocol. By sending correct HTTP headers with your application, you enable browsers of your end users to cache pages of your site.

Are you worried about users having old versions of page in cache? Then don't! This technique allows to get all the benefits of client side caching without affecting anything but 5 minutes of your time to integrate it :).

Database aware Select elements for Zend_Form (or Extending Zend_Form_Element_Multi)

In this article, you will know how you can extend select form element that comes with Zend Framework, to be easily filled with data from your database table. We want to be able to easily fill select elements from database table with less repetitive code. It's already easy to fill select elements with database data out of the box:

$db = Zend_Db_Table_Abstract::getDefaultAdapter();
$options = $db->fetchPairs(
   $db->select()->from('table_name', array('id', 'display_field'))
     ->order('some_field ASC'), 'id');
$form->getElement('someelement')->AddMultiOptions($options);

In the snippet above you get default database adapter, then simply fetch all items from 'table_name' ordering by 'some_field', and you see we fetch them as pairs binding to 'id' field. This basically means that the result of fetchPairs returns associative array of items. For select control options, we just want two fields: one for the display and one for the values ('id' is the value field, 'display_field' is for display)

But what if you have many database aware select controls? How is it possible to extend Zend Framework select elements with an easy method to populate data from database table?

Read on for details.

<< Start < Prev 1 2 Next > End >>
Results 10 - 16 of 16