9 great potential open source PHP projects

Posted under Article, Featured, Open Source, PHP on Friday, 1 April 2011 by
PHP open-source world very exciting, which we all contact with many famous open source projects such as Drupal, Sugar CMS, Joomla, etc., but in this article, the author selected nine new awareness is not high, but can Very useful in some areas, currently in development stage, promising PHP open...
9 great potential open source PHP projects

Free Webmaster Tools

Posted under Article, Featured, Free Webmaster Tools, My projects, SEO on Monday, 28 March 2011 by
Free webmaster services including SEO,Search Engines,Alexa Rank Checkups,Keyword Density,Domain Checkups, HTML and Other many useful...
Free Webmaster Tools

PHP website performance improve method

Posted under Article, Cache & Storage, Development, PHP, Web Servers on Saturday, 26 March 2011 by
Here are some methods may help you to improve php the performance 1: object code cache Each request need to recompile the object code, if you use the cache, then may avoided, so that you can make your php program to get faster. The following programs can use: A) Ioncube:...
PHP website performance improve method

php/python/perl read directory

Posted under Article, Development, Perl, PHP, Python on Saturday, 26 March 2011 by
PHP Code: function process_files( path ) {     if( is_dir( $path ) )     {          if ( $dh = opendir( $path ) )          {             while( ( $fname = readdir( $dh ) ) !== false...
php/python/perl read directory

php autoloader class

Posted under Article, Development, Featured, PHP on Tuesday, 8 March 2011 by
This class can automatically load one or more of the directory of the class or interface files,You can filter the files and directories do not meet, no new class, can be used...
php autoloader class

Five configuration options affect of the MySQL performance

Posted under Article, Database, Featured on Tuesday, 8 March 2011 by
(A) connections Connection is usually from the Web server, the following are some of the parameters related with the connection, and how to set them. 1, max_connections This is the Web server allows the maximum number of connections, each connection uses...
Five configuration options affect of the MySQL performance

php curl post files

Posted under Development, PHP on Sunday, 6 March 2011 by
Through PHP's CURL, can post the...
php curl post files

Download Online Rss Submit Tool code

Posted under My projects, Online Rss Submit Tool on Sunday, 6 March 2011 by
Online Rss Submit Tool available for download the code, its code is very simple, is submitted to the RSS using the Curl remote directory, I used snoopy.class.php, it is very convenient and simple. Source...
Download Online Rss Submit Tool code

Edit images in your CMS.

Posted under Open Source on Monday, 18 October 2010 by
Many Content Management System does not have image editing. And all users does not have an image editing program, that´s why PHP Image Editor has been developed. It just receives an image path, and then it´s possible to start editing. It´s really simple to install as a plugin in Joomla, and...
Edit images in your CMS.

Yahoo-BOSS-Client

Posted under Open Source on Monday, 18 October 2010 by
Yahoo BOSS (Build your Own Search Service) is a free search API. This package can retrieve results of web, news and image search and also cache them. Requires PHP 5.3 with allow_url_fopen=on For usage see example.php, YahooBossClient/README.TXT or the phpDoc documentation The BOSS API...
Yahoo-BOSS-Client

PHP multi-process concurrency control of test

Posted under Development, PHP on Thursday, 24 June 2010 by
Recently encountered a problem, Linux command line PHP under the program as a daemon, need to read a line from the queue file data sent through the TCP protocol to the field of the receiving server, read the next line of data, then send. When the local and overseas network is not good, sometimes...
PHP multi-process concurrency control of test

Nginx as a proxy_cache function to replace squid

Posted under Article, Featured, Software on Tuesday, 22 June 2010 by
Nginx 0.7.48 version from the start, to support a similar function Squid cache. This cache is the URL and the relevant portfolio as Key, with the md5 hash to preserve in the hard disk, so it can support any URL links, but also supports 404/301/302 such a non-200 status code. Although the official...
Nginx as a proxy_cache function to replace squid

PHP Accelerators : APC vs Zend vs XCache with Zend Framework

Posted under Featured, PHP on Sunday, 20 June 2010 by
Tonight I wanted to see how the Zend Framework would run against an application that I have put in quite a bit of components into. I figured with the amount of objects that have been instanciated that there was likely going to be a larger performance hit overall. These results may surprise you with...
PHP Accelerators : APC vs Zend vs XCache with Zend Framework

How To Learn PHP?

Posted under Article, Development, Featured, PHP on Saturday, 20 February 2010 by
Learning to program a computer is somewhat of a difficult task but if mastered can be a very rewarding skill to possess. Not only are programmers in high demand but being able to program means that you can take on your own projects. PHP is a language normally used for web programming and its...
How To Learn PHP?

How do I set PHP include_path?

Posted under Article, PHP on Tuesday, 12 January 2010 by
There are at least 2 ways you can set your PHP include_path. Edit your /etc/php.ini file. Inside that file is a directive section for “Paths and Directories.” By default it is set to “.:/usr/local/lib/php”. You can change that value to whatever you like or add to (or eliminate) the ...
How do I set PHP include_path?