Hi Guys, I have completed the upgrade and so far all looks good, I have a few errorsw in the ispconfig cron.log Code: PHP Deprecated: Comments starting with '#' are deprecated in /etc/php5/cli/conf.d/imagick.ini on line 1 in Unknown on line 0 PHP Deprecated: Comments starting with '#' are deprecated in /etc/php5/cli/conf.d/imap.ini on line 1 in Unknown on line 0 PHP Deprecated: Comments starting with '#' are deprecated in /etc/php5/cli/conf.d/mcrypt.ini on line 1 in Unknown on line 0 PHP Deprecated: Comments starting with '#' are deprecated in /etc/php5/cli/conf.d/mhash.ini on line 1 in Unknown on line 0 PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib/php5/20090626/mhash.so' - /usr/lib/php5/20090626/mhash.so: cannot open shared object file: No such file or directory in Unknown on line 0 The first 4 are fine I just needed to edit the file and replace the # with // the last one is maybe a problem: Code: root@venus:/usr/lib# locate mhash.so /usr/lib/libmhash.so.2 /usr/lib/libmhash.so.2.0.1
Search with apt for something like php5-mhash. If there is such a packge, reinstall it with: apt-get install --reinstall php5-mhash In case there is no such package, then comment out all lines in /etc/php5/cli/conf.d/mhash.ini or remove the complete file and restart apache.
Thanks for the response. This is what I found https://bugs.launchpad.net/ubuntu/+source/php5/+bug/541439 Basically php5-mhash is now included with php and is no longer required. run this to resolve the error dpkg -P php5-mhash