Install 4images Gallery on Ubuntu

Install 4images Gallery on Ubuntu

We’ll show you, how to Install 4images Gallery on Ubuntu. 4images Gallery is an image gallery management system. It is written in PHP and uses MySQL database to store its data. 4images Gallery is free for private and non-commercial use. The installation of 4images Gallery is very easy and in this tutorial we will help you to install 4images Gallery on a Linux VPS running Ubuntu 14.04 as an operating system.

Before starting with the installation process, go ahead and connect to your server via SSH. Once you log in you can update all your system software to the latest version available. It is very important to keep all you software up to date and for that purpose you can use the following command:

sudo apt-get update && sudo apt-get -y upgrade

Next, download the latest version of 4images Gallery from the official web site at http://www.4homepages.de/download-4images and upload the zip archive to your server. Make sure that the zip archive is uploaded to the /var/www/ directory on your Ubuntu VPS. Once you upload the file you can continue with the other steps of this tutorial.

Navigate to the /var/www/ directory on your server using the command:

cd /var/www/

Next, extract the archive using the following command:

sudo unzip 4images1.7.13.zip

If you get an error like the one below:

-bash: /usr/bin/unzip: No such file or directory

it means that the unzip package is not installed on your system. To install the unzip package you can use the command:

sudo apt-get install unzip

Then, extract the archive using the same command from above.
Change the ownership of the files:

sudo chown www-data: -R 4images/

Now, create an Apache virtual host for 4images Gallery:

sudo nano /etc/apache2/sites-available/4images.conf

Add the following content:

Need a fast and easy fix?
✔ Unlimited Managed Support
✔ Supports Your Software
✔ 2 CPU Cores
✔ 2 GB RAM
✔ 50 GB PCIe4 NVMe Disk
✔ 1854 GeekBench Score
✔ Unmetered Data Transfer
NVME 2 VPS

Now just $43 .99
/mo

GET YOUR VPS
<VirtualHost *:80>
 ServerAdmin admin@yourdomain.com
 DocumentRoot /var/www/4images
 ServerName yourdomain.com
 ServerAlias www.yourdomain.com
 <Directory /var/www/4images/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
 </Directory>
 ErrorLog /var/log/httpd/yourdomain.com-error_log
 CustomLog /var/log/httpd/yourdomain.com-access_log common
</VirtualHost>

Save the file and close it. Enable 4images Gallery and restart the Apache web server:

sudo a2ensite 4images
sudo service apache2 restart

Now, create a MySQL database so 4images Gallery can store its data. Enter MySQL as root:

mysql -u root -p

To create a database, a user and set up a password you should enter the commands below, one by one:

mysql> CREATE DATABASE 4images;
mysql> GRANT ALL PRIVILEGES on 4images.* to '4images_user'@'localhost' identified by 'your_password';
mysql> FLUSH PRIVILEGES;
mysql> exit

You can now continue with the online installation. Open your favorite web browser and enter your domain name into the search bar so you can access your 4images Gallery server. You should see something like the image below:

4images-setup

Fill out the requested fields and set up an admin account so you can manage your 4images Gallery installation later. Once you set up your account and the installation is successful you can log in to the admin panel at http://yourdomain.com/admin/index.php

Of course you don’t have to do any of this if you use one of our 4images Gallery VPS hosting services, in which case you can simply ask our expert Linux admins to install 4images Gallery for you. They are available 24×7 and will take care of your request immediately.

PS. If you liked this post, on how to Install 4images Gallery on Ubuntu, please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.

Leave a Comment