Ubuntu server: /xcache.so: cannot open shared object file: No such file or directory

Standard

If you keep getting this spamming your PHP error log, it is likely because PHP xcache was installed previously and then uninstalled, but its configuration files were not cleared out. This could have happened at an upgrade or when you chose a different cache system.

You can check if you have xcache installed by doing sudo dpkg -s php5-xcache | grep Status. If the status shows as "deinstalled" but with config files left, you can simply purge it with sudo apt-get remove --purge php5-xcache .

Then restart Apache: sudo service apache2 restart. Your error log should now be spam free.

Fixing problems with Dovecot – Postfix mail server after Ubuntu server upgrade to 11.10

Standard

The thing that scares me most about server upgrades is the mail server… the thought of having to reconfigure the many interdependent servers and processes involved is horrible.

So I wasn’t pleased to find my postfix-dovecot installation dying on upgrade from 11.04 to 11.10. I couldn’t sent outgoing mail or receive inbound.

Fortunately I wasn’t an “early upgrader”… both issues were easy to find and fix.

Continue reading