If you use suPHP you will notice that web applications like phpMyAdmin that are installed via the apt-get package manager won’t work anymore.
Thankfully this is easy to fix, you only need to edit the file /etc/apache2/mods-available/php5.conf and add a <Directory /usr/share> container around ifmodule so that the file looks like
<Directory /usr/share>
Then enable php5 again (which was probably disabled when you installed suphp)
a2enmod php5
Restart apache and phpMyAdmin should work
/etc/init.d/apache2 restart
This will enable the php5 module for applications that are installed into /usr/share while websites in your webfolder will still be served by the suPHP module.
If the configuration does not work immediately also try to restart your web browser, most modern browsers just give you back a cached result instead of checking if something changed on the website. Personally, I like to use Links2 for testing.
The idea for this came from http://serverfault.com/a/211942/65036, but most steps mentioned there are not necessary in the latest Ubuntu version.