Hi,
Thanks in advance for reading this.
Prior to upgrading to 1.1.0 my Roundcube 1.0.5 installation (Ubuntu 12.04 LTS) worked just fine. When I went to run the bin/update.sh command like so:
bin/update.sh --package roundcube --version=1.1 --dir=./SQL
I received this error:
PHP Fatal error: Class 'PEAR' not found in /var/www/roundcubemail/program/lib/Roundcube/bootstrap.php on line 100
I checked and found mention of php-pear in this official installation guide:
http://trac.roundcube.net/wiki/Howto_Install
I installed that package and was then able to successfully complete the db schema upgrade process. Later when I attempted to respond to an email the "Sending message..." note stayed on screen much longer than expected. I looked in the error logs and found this message:
roundcube: PHP Fatal error: Class 'Mail_mime' not found in /var/www/roundcubemail/program/steps/mail/sendmail.inc on line 362
I looked through all three guides and did not find mention of "mime":
nor did I find instructions telling me to use PEAR to install any modules. I did see mention of Composer, but the guides above made no reference to it that I could find. On the getcomposer.org site I looked at the "Using Composer" section:
https://getcomposer.org/doc/00-intro.md#using-composer
which suggested running:
php composer.phar install
but I did not find a composer.phar file. I did find a composer.json-dist file, but no references to composer.json or composer.json-ist in the documentation (aside from some rewrite rules blocking direct access).
Are there missing steps in the directions?