sudo yum install -y php56-gd php56-mbstring sudo service httpd restart cd ~ wget https://github.com/impresspages/ImpressPages/archive/master.zip unzip master.zip # If you unzip on accident, this command removes a whole tree: `rm -rf ImpressPages-master` mv ImpressPages-master/* /var/www/html mv ImpressPages-master/.htaccess /var/www/html rmdir ImpressPages-master rm master.zip # Add DB-specific user mysql -u root -p # The following commands are while logged into mysql CREATE USER 'website'@'%' IDENTIFIED BY 'your_strong_password'; CREATE DATABASE impress; GRANT ALL PRIVILEGES ON impress.* TO "website"@"%"; FLUSH PRIVILEGES; exit; # Give Impress Pages the needed file access sudo vim /etc/httpd/conf/httpd.conf # Edit line 151 (The AllowOverride None under Direcotry /var/www/html to be Allow Override All) sudo usermod -a -G www apache sudo service httpd restart # Then visit the website for a setup wizard