Install required Items

WordPress
You will need a copy of WordPress on your server, our instructions below will walk through the process to install this. We are providing links to the resources so that you can identify the items needed.
Putty
PuTTY is an SSH and telnet client, developed originally by Simon Tatham for the Windows platform. PuTTY is open source software that is available with source code and is developed and supported by a group of volunteers.
This will be used to remotely connect and execute our commands on your development server.
https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html
WinSCP
WinSCP is a popular SFTP client and FTP client for Microsoft Windows! Copy file between a local computer and remote servers using FTP, FTPS, SCP, SFTP, WebDAV or S3 file transfer protocols.
This will be used to remotely connect and transfer files to your development server, from your development machine.
https://winscp.net/eng/download.php
Atavism Integration
Atavism Integration can be downloaded directly from WordPress from their repository. It is not recommended to use any external download source as these files cannot be guaranteed as secure unless they come directly from WordPress.
Installation Guide
Following our tutorial in the Atavism Linux Server Install connect to your server and as the ubuntu user, execute the following commands. Make sure you have your username and password for the website we created at that time.
Ubuntu 20.04 Install Commands
# update the OS patches and patch the machine
sudo apt-get update # install the php, mysql server and other support applications sudo apt install -y php-fpm php-bcmath php-imagick php-soap mysql-server unzip autossh php-ssh2 imagemagick ghostscript php-gd php libapache2-mod-php php-mysql php-json php-curl php-xml php-common php-mbstring php-zip php-intl imagemagick ghostscript certbot #configure the proxy and fpm services sudo a2enmod proxy_fcgi setenvif # change to the home directory and then download the WordPress file. # extract the wordpress file to the html folder for serving the internet. #remove the default html file #change the ownership of the files in the folder to the proper user (www-data for Ubuntu) |
Ubuntu 22.04
# update the OS patches and patch the machine
sudo apt-get update # install the php, mysql server and other support applications sudo apt install -y php-fpm php-bcmath php-imagick php-soap mysql-server unzip autossh php-ssh2 imagemagick ghostscript php-gd php libapache2-mod-php php-mysql php-json php-curl php-xml php-common php-mbstring php-zip php-intl imagemagick ghostscript certbot #configure the proxy and fpm services sudo a2enmod proxy_fcgi setenvif # change to the home directory and then download the WordPress file. # extract the wordpress file to the html folder for serving the internet. #remove the default html file #change the ownership of the files in the folder to the proper user (www-data for Ubuntu) sudo a2enmod proxy_fcgi setenvif
|