Install Zend Optimizer on Ubuntu 8.04

PHP, Ubuntu May 16th, 2008       784Views

Here is a short tutorial on how to install zend optimizer on ubuntu 8.04:

First of all ,download Zend Optimizer from official website.

Before installing Zend Optimizer ,you need to install apache, php:
apt-get install libapache2-mod-php
Then create the index.php page under /var/www/:
echo “” > /var/www/index.php
Now , begin to install zend optimizer:
tar zxf ZendOptimizer-3.3.3-linux-glibc23-i386.tar.gz

cd ZendOptimizer-3.3.3-linux-glibc23-i386
./install.sh

After installation , restart the Apache,and then visit the home page , the words Zend Optimizer should be able to be found if successful installation.

Tags: , ,

If you enjoyed this post, make sure you subscribe to my RSS feed!

New PHP V6 features

PHP May 12th, 2008       100Views

May 6,IBM DeveloperWorks announced the new features of PHP v6(,which is PHP’s next edition) in the article.

This article focuses on the changes for PHP V6 ,as follows:
1. Improved Unicode support,which will allow PHP to support a broader set of characters for international support.

2. New namespaces,you can have class names that someone else might use, but now you don’t have to worry about running into any problems by using it.

3. Web 2.0 features,which are those that directly allow you to introduce Web 2.0 features into your PHP application.

4.Features that will be removed from the PHP version include:

magic_quotes
register_globals
register_long_arrays
safe_mode

There is some major new features of PHP v6.Cheers!


Tags: ,

If you enjoyed this post, make sure you subscribe to my RSS feed!