Skip to content

Instantly share code, notes, and snippets.

@LinuxlinkedBD
Last active July 27, 2022 13:13
Show Gist options
  • Save LinuxlinkedBD/7f9c31c44619ca57517dcd1168d474e0 to your computer and use it in GitHub Desktop.
Save LinuxlinkedBD/7f9c31c44619ca57517dcd1168d474e0 to your computer and use it in GitHub Desktop.
Revive adserver installation on Ubuntu 20.04 LTS
If you need complete Revive-Adserver setup, ping me on below contacts:
Telegram: linuxlinked
email: [email protected]
WhatsApp: +8801720903155
Skype:live:.cid.c0dc316b9d727d5e
YouTube: https://youtu.be/vWIbW8r4XmI
########################################################################################################################################
#!/bin/bash
sudo apt update
sudo apt-get upgrade -y
apt-get clean all
apt-get update
apt-get upgrade
sudo apt-get update && apt-get upgrade
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update
sudo apt install php php-common php-mysql php-xml php-xmlrpc php-curl php-gd php-imagick php-cli php-dev php-imap php-mbstring php-opcache php-soap php-zip php-intl php-fpm
sudo apt -f install
sudo apt -y autoremove
sudo apt -y autoclean
sudo apt -y clean
sudo apt update
wget http://download.revive-adserver.com/revive-adserver-3.1.0.zip
unzip revive-adserver-3.1.0.zip
#Install via browser : http://localhost/
@thepagan
Copy link

E: Package 'php-opcache' has no installation candidate Select version requied

You can edit that line in the script to match your php version, eg php7.2-opcache, php8.1-opcache etc

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment