SquidGuard is a URL redirector used to use blacklists with the proxysoftware Squid. There are two big advantages to squidguard: it is fast and it is free.
Revision of PHP from Wed, 08/22/2018 - 14:00
Revisions allow you to track differences between multiple versions of your content, and revert back to older versions.
http://www.afp548.com/article.php?story=20041104230209410
Prerequisites
- CentOS 7.x Linux
yum -y install libxml2-devel libjpeg-devel libpng-devel gd-devel libcurl-devel bzip2-devel
If you are going to install LDAP support (
--with-ldap
), you will likely need to install OpenLDAP development tools:yum -y install openldap-devel
- Mac OS X 10.3 (Panther) - Special Instructions for making this work!
Download the Source
Download the most recent version of PHP. At the time of writing, that was 5.6.34:
cd /extra/src
wget http://ca2.php.net/distributions/php-5.6.37.tar.gz
tar zxf php-5.6.37.tar.gz
cd php-5.6.37
Installation
Instructions are provided for installing PHP with either the Apache or lighttpd web servers:
You can test your installation by putting a simple script into a install-test.php
file and loading it from your webserver:
<?php phpinfo(); ?>
Configuration
Ideally, you should set the appropiate timezone in /usr/local/lib/php.ini
. phpMyAdmin, in particular is fussy about wanting a timezone set.
date.timezone = America/Thunder_Bay
PHP Caches
Alternative PHP Cache
eAcclerator
- Log in to post comments