sometimes a cigar is just a cigar
Header image

Problem on http://localhost/phpmyadmin Not Found The requested URL /phpmyadmin was not found on this server. Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.4 with Suhosin-Patch Server at localhost Port 80 Solution sudo vi /etc/apache2/apache2.conf add this somewhere Include /etc/phpmyadmin/apache.conf Then restart apache2 sudo service apache2 restart

On ubuntu and kubuntu systems you can install php5 apache2 mysql and phpmyadmin with this command sudo apt-get install apache2 php5 php5-mysql php5-gd mysql-server phpmyadmin To enable mod_rewrite run this: sudo ln -sfn /etc/apache2/mods-available/rewrite.load /etc/apache2/mods-enabled/ sudo /etc/init.d/apache2 restart