Linux Tutorials on the topic “php”
-
PHP Programming Basics
Author: haroon • Tags: php • Comments: 12PHP Programming Basics This article is the first of a series of PHP guides that aim at teaching you the basics of PHP programming.
-
How To Automatically Scan Uploaded Files For Viruses With php-clamavlib
Author: Falko Timme • Tags: php, antivirus • Comments: 2How To Automatically Scan Uploaded Files For Viruses With php-clamavlib This guide describes how you can automatically scan files uploaded by users through a web form on your server using PHP and ClamAV. That way you can make sure that your upload form will not be abused to distribute malware. To glue PHP and ClamAV, we install the package php5-clamavlib/php4-clamavlib which is rather undocumented at this time. That package is available for Debian Etch and Sid and also for Ubuntu Dapper Drake and Edgy Eft, so make sure you use one of these platforms.
-
How To Set Up A Ubuntu/Debian LAMP Server
Author: olddocks • Tags: apache, php, mysql, debian, ubuntu • Comments: 43How To Set Up A Ubuntu/Debian LAMP ServerThis tutorial shows a quick way to set up your own LAMP server (Linux + Apache + MySQL + PHP/Perl) on a Ubuntu or Debian system.
-
-
Apache-mod_ssl-PHP-Howto
Author: Falko Timme • Tags: apache, php • Comments: 0Apache-mod_ssl-PHP-Howto This document describes how to install an Apache web server (1.3.x) with mod_ssl and PHP enabled.
-
Apache2-SSL-PHP5-Howto (+ Zend Optimizer And IonCube Loader)
Author: Falko Timme • Tags: apache, php • Comments: 6Apache2-SSL-PHP5-Howto (+ Zend Optimizer And IonCube Loader) This document describes how to install an Apache web server (2.0.x) with SSL and PHP5 (with Zend Optimizer and ionCube Loader) enabled.
-
Running Apache2 With PHP5 And PHP4 At The Same Time
Author: Falko Timme • Tags: apache, php • Comments: 6Running Apache2 With PHP5 And PHP4 At The Same Time This tutorial shows how to install and configure Apache2 with PHP5 and PHP4 enabled at the same time. Because it is not possible to run both PHP5 and PHP4 as Apache modules, we must run one of them as CGI, the other one as Apache module. In this document I will use PHP5 as Apache module and PHP4 as CGI, and I will describe the setup for the Linux distributions Debian Sarge (3.1) and Ubuntu 5.10 (Breezy Badger).
-
I'd like to disable the use of the exec() function in my PHP. Can this be done?
Author: Falko Timme • Tags: php • Comments: 0
Yes, you can disable it in your php.ini. Search for the line disable_functions = and change it: disable_functions = exec Don't forget to restart Apache afterwards.
-
How To Set Up suPHP With PHP4 And PHP5
Author: Falko Timme • Tags: apache, php • Comments: 7How To Set Up suPHP With PHP4 And PHP5 This tutorial shows how to install and use suPHP with PHP4 and PHP5. suPHP is a tool for executing PHP scripts with the permissions of their owners instead of the Apache user. With the help of suPHP you can also have PHP4 and PHP5 installed at the same time which I will describe at the end of this article. suPHP integrates into Apache2 as a module. At the time of this writing it does work with Apache2 prior to version 2.2. Version 2.2 is not supported yet.