Backing Up WordPress and Database using Secured Akeeba

Backing up your WordPress site (or multisite) is an important task if you care about your content. A good backing up system can save you a lot of time if something happens to your data or, even configuration. This tutorial will go through how to setup and use Akeeba Backup CORE for WordPress. Requirements WordPress…

Enabling php in Apache on Linux (CentOS 6) by Loading the Module in httpd.conf

Though installing different versions of php using yum should enable php automatically on Apache 2.2, in case there is a problem and it is not enabled this tutorial shows how to enable it. Make Sure php Is Installed We are assuming php has already been installed. If yum was used you can check this way:…

Using phpinfo to Display Info (Including Version Number) of your php (Linux)

An easy and quick way to find out what php version your apache server is using is to use the phpinfo() function. To do this we will create a file with <?php phpinfo() ?> in it and access it through our server by opening it in a browser. Deciding Where to Put the PHP File…

Viewing the Apache Modules Available on your Disk (Linux (CentOS 6))

If you wish to see the Apache modules available on your disk, perhaps to see the spelling when modifying the httpd.conf, then go to the following directory: [ahmed@amayem ~]$ cd /etc/httpd/ [ahmed@amayem httpd]$ ls conf conf.d logs modules run The modules directory is what we are after: [ahmed@amayem httpd]$ cd modules [ahmed@amayem modules]$ ls libphp5.so…