Warning

These documentation pages are currently under construction and their structure is not ready yet.

As soon as a sufficient number of pages is present, the site navigation will be shown.

Centos

Specific instructions for Linux Centos distribution (may be applicable to Red Hat too)

Install Apache

# yum install httpd

Centos httpd package already includes mod_rewrite and mod_proxy

Install MySQL

# yum install mysql-server mysql php-mysql

After installation, you probably want to make it start at boot

# chkconfig --levels 235 mysqld on

and start the service

# service mysqld start

In order to secure your MySQL installation, you can run

# mysql_secure_installation

Install PHP

# yum install php php-cli php-common php-curl php-imap php-mbstring php-mcrypt php-pear php-soap php-xml

To install some additional libraries from pecl, you also need to install the following packages

# yum install php-devel gcc make

Then you can compile json library

# pecl install json

and activate it

# echo "extension=json.so" >> /etc/php.d/json.ini

Restart Apache to activate new PHP libraries and configuration

# service httpd restart

Install ImageMagick (this command will pull lots of additional dependencies)

# yum install ImageMagick

Please note that ImageMagick version shipped with Centos is quite old and it may fail some non-critical installation test run by PhPeace

Install CURL

# yum install curl
Powered by PhPeace 2.5.4