![]()
This is a quick note about how to install LAMP and phpMyAdmin on Ubuntu 10.04.
In terminal,
Then follow the installation. It will ask you to enter mysql password.
Then install phpmyadmin
It will also ask you passwords.
Then open apache2.conf to edit.
Add the following at the end.
Include /etc/phpmyadmin/apache.conf
Then restart apache.
Then visit http://localhost/ and http://localhost/phpmyadmin to see them.
Adding mod_rewrite to apache
You may need mod_rewrite to be loaded on apache if you are using .htaccess file in your web development.
Then on your terminal,
sudo touch rewrite.load
sudo gedit rewrite.load
Then copy and paste the following and save it.
Then on your terminal,
Then find and change the following line,
AllowOverride None
Order allow,deny
allow from all
to
AllowOverride all
Order allow,deny
allow from all
And restart apache by this.


















