Linux Tutorials on the topic “php”

  • How To Install MySQL 4.1 And PHP4 On Debian Etch

    Author: Falko TimmeTags: , , Comments: 0

    How To Install MySQL 4.1 And PHP4 On Debian Etch MySQL 4 and PHP 4 are quite old, but you might have PHP applications on your server that require PHP4 and MySQL 4. The problem is that Debian Etch comes with MySQL 5 only, and its PHP4 packages depend on MySQL 5 and don't work with MySQL 4. This guide shows how you can install MySQL 4.1 on Debian Etch along with PHP4 packages that work with MySQL 4.1.

  • Monitoring Wordpress (And Other Database-Backed PHP Apps) With Hyperic HQ

    Author: johnmarkTags: , Comments: 0

    Monitoring Wordpress (And Other Database-Backed PHP Apps) With Hyperic HQ This howto is for users and admins of PHP/MySQL web applications who are looking for a way to monitor the data from these applications. This howto is not geared specificially to monitoring the system resource usage of the web server and database, although that is one piece of the puzzle. Instead, the focus of this howto is using Hyperic HQ's SQL Query plugin to monitor the data contained within the backing database, in this case the number of posts, comments and users from a Wordpress blog deployment. Then, we will view this data in the context of system resource usage, to help admins correlate the information from the Wordpress plugin we're about to create with whatever other data they're monitoring from that system.

  • Magento E-Commerce Solution On Debian Etch

    Author: o.meyerTags: , Comments: 6

    Magento E-Commerce Solution On Debian Etch This document describes how to set up Magento on Debian Etch. The resulting system provides a professional open-source e-commerce solution with a many features. Please note, that Magento is currently in a preview release and not recommended for use in production environments. But at least it's worth to glance at it.

  • Have Your Own (Chrooted) Debian LAMP Server While Running The Perfect Ubuntu Desktop

    Author: the_g_bombTags: , , , , Comments: 0

    Have Your Own (Chrooted) Debian LAMP Server While Running The Perfect Ubuntu Desktop This is a brief description about the steps to be taken to setup a Debian based Webserver (Debian Sarge alias Debian 3.1) that will run chrooted under Ubuntu 7.04.

  • PHP Access To An MSSQL Database From Debian Etch With ODBC And FreeTDS

    Author: kkimmellTags: , , Comments: 8

    PHP Access To An MSSQL Database From Debian Etch With ODBC And FreeTDS This assumes you already have Apache2 and PHP5 set up properly on your system. My efforts to get this connection working were compiled from information found at www.unixodbc.org and www.freetds.org. These steps worked for me with an Apache2 web server with php5 running on Debian Etch stable in October of 2007. The SQL server is running Microsoft SQL 2005 on a Windows 2003 Server OS.

  • Integrating eAccelerator Into PHP5 (Debian Etch)

    Author: Falko TimmeTags: , Comments: 9

    Integrating eAccelerator Into PHP5 (Debian Etch) This guide explains how to integrate eAccelerator into PHP5 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."

  • Integrating eAccelerator Into PHP5 (Fedora 7)

    Author: Falko TimmeTags: , Comments: 1

    Integrating eAccelerator Into PHP5 (Fedora 7) This guide explains how to integrate eAccelerator into PHP5 on a Fedora 7 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."

  • Integrating eAccelerator Into PHP5 (CentOS 5.0)

    Author: Falko TimmeTags: , Comments: 0

    Integrating eAccelerator Into PHP5 (CentOS 5.0) This guide explains how to integrate eAccelerator into PHP5 on a CentOS 5.0 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."

  • How To Set Up A Facebook RSS Feed Reader Application For Your Blog

    Author: Falko TimmeTags: Comments: 6

    How To Set Up A Facebook RSS Feed Reader Application For Your Blog This guide shows how you can build an RSS feed reader application for the social network Facebook that will display your blog's/web site's RSS feed on the profile pages of Facebook users (that have installed the RSS feed reader application). Each item of the RSS feed will have a Share button so that people can share the story with their friends, and the application will have an Invite link so that people can invite up to ten friends at once to also install this feed reader application. I will use PHP5 to build the RSS feed reader application. To parse the RSS feed and generate HTML from it, I will use Magpie RSS.

  • Sending Email From PHP

    Author: fwantuchTags: Comments: 5

    Sending Email From PHP This tutorial shows how you can easily send email messages from a PHP-enabled web server. It can be utilized for processing forms data, sending alerts, etc. It also explains a bit about email headers formatting.