Sabtu, 11 Februari 2012

How to Fix APC Installation Error on Ubuntu

The Alternative PHP Cache (APC) is a free and open opcode cache for PHP.

Its goal is to provide a free, open, and robust framework for caching and optimizing PHP intermediate code.

Installation of APC is quite simple.

This article shows you how to fix APC installation problem when it fails at make process as following:

In file included from /tmp/pear/temp/APC/apc.c:44:
/usr/include/php5/ext/pcre/php_pcre.h:29:18: error: pcre.h: No such file or directory
In file included

Read more on How to Fix APC Installation Error on Ubuntu

Rabu, 01 Februari 2012

How to Create Google Page Rank Script Using PHP

Page rank is created by Google to rank website based on popularity. Now you can create your own page rank look up script using PHP. I get this script from phurix.net website and modify it to have security code.

First of all, we are going to create HTML form to capture URL and security code.

This is the index.php file contains the HTML form:

session_start();

/**
* PageRank Lookup (Based on Google Toolbar for Mozilla Firefox)
*
* @copyright 2011 HM2K

Read more How to Create Google Page Rank Script Using PHP