winggundamth
Verified User
- Joined
- Feb 1, 2009
- Messages
- 7
My environment is
- FreeBSD 7.1
- CustomBuild 1.2.11
- MySQL 5.1
I have a problem that I can use all webmail except roundcube that showing an error and doesn't show login page.
I found that roundcube is use innodb as database engine and mysql doesn't compile to support it.
Solution: change /usr/local/directadmin/custombuild/build line 2338 from
- FreeBSD 7.1
- CustomBuild 1.2.11
- MySQL 5.1
I have a problem that I can use all webmail except roundcube that showing an error and doesn't show login page.
I found that roundcube is use innodb as database engine and mysql doesn't compile to support it.
Solution: change /usr/local/directadmin/custombuild/build line 2338 from
to--enable-static \
then run this command--enable-static --with-innodb \
# delete old roundcube and da_roundcube database
rm -rf /home/mysql/da_roundcube
rm -rf /var/www/html/roundcube*
# compile and install mysql 5.1 to support innodb
cd /usr/local/directadmin/custombuild/
./build mysql
# then run roundcube install script again
./build roundcube