By r4sk4t0v
hello i am trying to setup website and i got script for auto set up but i am get not everything corect this is how it looks like btw i am using Ubuntu 18.04
if [ `getconf LONG_BIT` -ne "32" ];
then
installpack="apache2 php5 php5-dev php5-mysql php-pear wget unzip"
else
installpack="apache2 php5 php5-dev php5-mysql php-pear wget unzip"
fi
dpkg --add-architecture i386
apt-get update
apt-get install sudo
sudo apt-get install -y build-essential
sudo apt-get install -y python-software-properties
apt-get install bsdutils
sudo apt-get install -y php5
sudo apt-get install -y apache2
sudo apt-get install -y libapache2-mod-php5
sudo apt-get install -y mysql-server
sudo apt-get install -y php5-mysql
sudo apt-get install -y php5-curl
sudo apt-get install -y php5-gd
sudo apt-get install php5-mcrypt
sudo php5enmod mcrypt
sudo service apache2 reload
sudo apt-get install -y git-core
sudo apt-get install -y phpmyadmin
sudo apt-get install nano
sudo a2enmod rewrite
sudo /etc/init.d/apache2 restart
apt-get install curl
curl -sS https://getcomposer.org/installer | php
sudo mv composer.phar /usr/local/bin/composer
sudo apt-get update
sudo apt-get install tcl8.5
wget http://download.redis.io/releases/redis-stable.tar.gz
tar xzf redis-stable.tar.gz
cd redis-stable
make
make test
sudo make install
cd utils
sudo ./install_server.sh
service apache2 restart
curl --silent --location https://deb.nodesource.com/setup_0.12 | bash -
apt-get install --yes nodejs
curl --silent --location https://deb.nodesource.com/setup_0.12 | bash -
apt-get install --yes nodejs
export DEBIAN_FRONTEND=noninteractive;apt-get --allow-unauthenticated -y -q install $installpack
for i in `seq 1 100`;
do
echo
done
could you tell me what is wrong with it ? thank you )
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Accepted Answer
Hi there @r4sk4t0v,
I believe that PHP 5 is no longer available in the default Ubuntu repository.
You need to adjust your script and change all php5
reverences with either just php
or php7.2
.
Let me know how it goes! Regards, Bobby
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.