Linux Tutorials on the topic “php”

  • Using memcached With Your vBulletin Forum To Reduce Server Load (Debian Etch)

    Author: Falko TimmeTags: Comments: 2

    Using memcached With Your vBulletin Forum To Reduce Server Load (Debian Etch) In this article I will explain how you can reduce server load by using memcached together with your vBulletin forum software (I'm assuming you are running vBulletin on Apache2 with mod_php5). memcached is a daemon that can store objects in the system's memory (e.g. results of database queries) which can speed up your web site tremendously. You can use memcached over a network (i.e., install your web application on one server and memcached on another server), but usually you install both on one server to avoid the networking overhead.

  • phpsh, An Interactive Shell For PHP (Debian Etch)

    php Author: Falko TimmeTags: , Comments: 0

    phpsh, An Interactive Shell For PHP (Debian Etch) phpsh is an interactive shell for php that features readline history, tab completion, quick access to documentation. It was developed at Facebook and ironically, is written mostly in python. This article explains how you can install/use it on a Debian Etch system.

  • Installing ehcp (Easy Hosting Control Panel) On Any Debian Or Apt-Get Based Distro, Including Ubuntu

    Author: bvidinliTags: , , , , , , , , , , , Comments: 6

    Installing ehcp (Easy Hosting Control Panel) On Any Debian Or Apt-Get Based Distro, Including Ubuntu In this tutorial I will show you howto install ehcp on any debian based distro, or any distro that has apt-get support. ehcp stands for Easy Hosting Control Panel. It may be used by anyone wanting to host multiple domains in his dedicated/vps server. It is a hosting control panel under development.

  • Integrating APC (Alternative PHP Cache) Into PHP5 And Lighttpd (Debian Etch)

    debian Author: Falko TimmeTags: , , Comments: 2

    Integrating APC (Alternative PHP Cache) Into PHP5 And Lighttpd (Debian Etch) This guide explains how to integrate APC (Alternative PHP Cache) into PHP5 and lighttpd on a Debian Etch system. APC is a free and open PHP opcode cacher for caching and optimizing PHP intermediate code. It's similar to other PHP opcode cachers, such as eAccelerator and XCache.

  • Integrating APC (Alternative PHP Cache) Into PHP5 And Lighttpd (Fedora 9)

    lighttpd Author: Falko TimmeTags: , , Comments: 2

    Integrating APC (Alternative PHP Cache) Into PHP5 And Lighttpd (Fedora 9) This guide explains how to integrate APC (Alternative PHP Cache) into PHP5 and lighttpd on a Fedora 9 system. APC is a free and open PHP opcode cacher for caching and optimizing PHP intermediate code. It's similar to other PHP opcode cachers, such as eAccelerator and XCache.

  • Integrating eAccelerator Into PHP5 And Lighttpd (Fedora 9)

    fedora Author: Falko TimmeTags: , , Comments: 0

    Integrating eAccelerator Into PHP5 And Lighttpd (Fedora 9) This guide explains how to integrate eAccelerator into PHP5 and lighttpd on a Fedora 9 system. From the eAccelerator project page: "eAccelerator is a free open-source PHP accelerator, optimizer, and dynamic content cache. It increases the performance of PHP scripts by caching them in their compiled state, so that the overhead of compiling is almost completely eliminated. It also optimizes scripts to speed up their execution. eAccelerator typically reduces server load and increases the speed of your PHP code by 1-10 times."

  • Installing memcached And The PHP5 memcache Module On Debian Etch (Apache2)

    php Author: Falko TimmeTags: , , Comments: 5

    Installing memcached And The PHP5 memcache Module On Debian Etch (Apache2) This guide explains how to install memcached and the PHP5 memcache module on a Debian Etch system with Apache2. memcached is a daemon that can store objects in the system's memory (e.g. results of database queries) which can speed up your web site tremendously. You can use memcached over a network (i.e., install your web application on one server and memcached on another server), but usually you install both on one server to avoid the networking overhead.

  • Integrating eAccelerator Into PHP5 And Lighttpd (Debian Etch)

    lighttpd Author: Falko TimmeTags: , , Comments: 0

    Integrating eAccelerator Into PHP5 And Lighttpd (Debian Etch) This guide explains how to integrate eAccelerator into PHP5 and lighttpd on a Debian Etch system. From the eAccelerator project page: "eAccelerator is a free open-source PHP accelerator, optimizer, and dynamic content cache. It increases the performance of PHP scripts by caching them in their compiled state, so that the overhead of compiling is almost completely eliminated. It also optimizes scripts to speed up their execution. eAccelerator typically reduces server load and increases the speed of your PHP code by 1-10 times."

  • Installing Lighttpd With PHP5 And MySQL Support On CentOS 5.0

    lighttpd Author: Falko TimmeTags: , , Comments: 6

    Installing Lighttpd With PHP5 And MySQL Support On CentOS 5.0 Lighttpd is a secure, fast, standards-compliant web server designed for speed-critical environments. This tutorial shows how you can install Lighttpd on a CentOS 5.0 server with PHP5 support (through FastCGI) and MySQL support.

  • Displaying RSS And Atom Feeds On Your Web Site With SimplePie

    Author: Falko TimmeTags: Comments: 0

    Displaying RSS And Atom Feeds On Your Web Site With SimplePie SimplePie is a PHP library that can fetch, cache, parse, and normalize RSS and Atom feeds. It allows you to display the newest articles from websites with RSS or Atom feeds on your own site. This is a great way to add new, fresh, and relevant information to your site. This guide shows how you can set it up for your own web site.