How to install apache2 php5 and mysql5 in ubuntu 12.04
Tech-Today

How to install apache2 php5 and mysql5 in ubuntu 12.04


These are the set of scripts I executed in ubuntu to install the ff:
1.) apache2
2.) php5
3.) mysql5

>sudo apt-get install apache2 //installs in /etc/apache2
>sudo apt-get install php5 //installs in /etc/php5
>sudo apt-get install libapache2-mod-php5 php5-curl
>sudo apt-get mysql-server //installs in /etc/mysql
>sudo apt-get install php5-mysql //install mysql and mysqli
>sudo service apache2 restart




- How To Install Mysql In Ubuntu 16.04
The following commands allow us to install a MySQL server on Ubuntu 16.04, create a database, user and table. And finally, tune the server. # install mysql sudo apt-get update sudo apt-get upgrade sudo apt-get install mysql-server sudo mysql_secure_installation...

- Install And Configure Mariadb On Ubuntu
I. Installation In your terminal execute the following commands: sudo apt-get install software-properties-common sudo apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xF1656F24C74CD1D8 sudo add-apt-repository 'deb [arch=amd64] http://mirror.zol.co.zw/mariadb/repo/10.3/ubuntu...

- Setup Mysql Database For Remote Access
Here are some useful guidelines in setting up a mysql server for remote access in Ubuntu. Install and configure mysql server. sudo apt-get update sudo apt-get install mysql-server mysql_secure_installation *Note in MySQL - it will ask to set the password...

- How To Setup Your Wordpress Website In Nginx Server
Long ago I learned of the advantages of nginx over apache, just google it. Planned to migrate our sites but didn't manage to do it until last weekend. So here's what I did to do that: I'm assuming you already have a functional wordpress with...

- Deprecated: Assigning The Return Value Of New By Reference Is Deprecated In Phppgadmin
Unfortunately, some frameworks built using php5.2 will experience this problem. Solutions: 1.) Set the error_reporting = 0, this will ignore the above error. 2.) Just use php5.2, for example in my case phpPgAdmin is throwing the above error in php5.3...



Tech-Today








.