PHP Accelerator tools
There are a few options I can choose when I setup my PHP environment for my Web Site here. APC – Alternative PHP Cache It is used widely. Free, Open Source framework that caches the output of the PHP bytecode...
Tech geek. Life geek.
There are a few options I can choose when I setup my PHP environment for my Web Site here. APC – Alternative PHP Cache It is used widely. Free, Open Source framework that caches the output of the PHP bytecode...
Zend Opcache is an open source component of Zend Server and Zend Server Community Edition. Zend Opcache speeds up PHP execution by opcode caching and optimization. It stores precompiled script bytecode in shared memory. This eliminates the stages of reading...
Since I installed PHP 5.5.3 and Zend OPcache v7.0.3, it is good for WordPress opcode already. For other cache optimization, I need a cache system. I choose Memcached server. Part 1. Install Memcached Server I install Memcached with following command: Then...
It is the test based on the LEMP, or Linux, Nginx, MySQL and PHP, on Centos 6.4 64bit at Burst.net 1GB VPS. Details about the testing bed: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz, 1 cores, 1GB RAM CentOS Linux 6.4...
It is a guide to install LEMP on a Centos 6.4 64bit VPS at Burst.net. It is also working on other VPS. LEMP stands for Linux, NginX, MySQL, PHP. First of all, rebuild the OS on VPS with Centos-6.2-x86_64. Other...
This is an example from Wicked Cool PHP, an very handy book for daily PHP coding. I am reading this book now. It has 12 chapters, total 76 tips.
There are certain PHP configuration tat affect security features. The following recommended security configuration options is for production servers. register_globals set to off safe_mode set to off error_reporting set to off disable these functions: system(), exec(), passthru(), shell_exec(), proc_open(), and...
It is based on phpBB 3.0.11. I checked the Google Analytics report. There are about 20% users using cellphone or iPad. To accommodate these users, I installed a mobile style on it and added the Mobile device detection facilitate. There...
XCache is a open-source opcode cacher, which means that it accelerates the performance of PHP on servers. It optimizes performance by removing the compilation time of PHP scripts by caching the compiled state of PHP scripts into the shm (RAM)...
I have a forum running by phpBB 3. After upgrading to phpBB 3.0.10, the board notice said, from phpBB 3.1, the next version, it will not support php5.2. phpBB 3.1 “Ascraeus” to require PHP 5.3.2 My server is running php...
Before install Apache2, PHP5 and MySQL, install CentOS 6.3 server first. Followed the steps to install these staff. 1) Installing MySQL 5
It is time to upgrade the forum powered by phpBB. New maintenance version 3.0.11 released. I have a small forum just upgraded from 3.0.10 to 3.0.11. It is easy to use Automatic Update Package. There are tons of bugs and...
As a PHP developer, you need the following information. The PHP development team announces the immediate availability of PHP 5.4.6 and PHP 5.3.16. These releases fix over 20 bugs. All users of PHP are encouraged to upgrade to PHP 5.4.6,...
It is not that easy for a newbie to make a workable VPS by himself. I have three year experience on VPS. I can make it as simple as possible to show you how to do it in three steps....
To use custom PHP.ini on DreamhostPS or Dreamhost VPS, I did a lot of research. Actually search, or Google. When I working on the Dreamhost Virtual hosting, I get the answer from Wiki of Dreamhost. But there are not enough...