[FUG-BR] Roundcube
Alvaro Resurreição
alvaro em bsd.com.br
Domingo Julho 20 17:41:57 BRT 2008
Boa tarde
Estou montando um servidor de email com FreeBSD 6.3 + QMAIL + MySql e estou
instalando o RoundCube com Apache/2.0.63 + PHP/5.2.6
Quando eu acesso: http://localhost/roundcube/index.php ele me abre a tela
para colocar o usuário e a senha, mas quando vou em login ele me retorna:
404 Not Found - The requested URL /roundcube/ was not found on this server.
Alguém poderia me auxiliar?
Obrigado pela atenção
Já fiz as seguintes configurações no roundcube:
#cd /usr/local/www/roundcube/config
# vi db.inc.php
$rcmail_config['db_dsnw'] = 'mysql://roundcube:senha@localhost/roundcube';
# vi main.inc.php
$rcmail_config['default_host'] = 'localhost';
E inclui no httpd.conf
# cd /usr/local/etc/apache2/
# vi httpd.conf
[...]
AddType application/x-httpd-php .php .php3 .phtml
AddType application/x-httpd-source-php .phps
[...]
<IfModule dir_module>
DirectoryIndex index.php index.html
</IfModule>
[...]
Alias /roundcube "/usr/local/www/roundcube/"
<Directory "/usr/local/www/roundcube">
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
[...]
Além disso já configurei o MYSQL da seguinte forma
mysql> create database roundcube;
Query OK, 1 row affected (0.00 sec)
mysql> grant all on roundcube.* to roundcube em localhost identified by
"senha";
Query OK, 0 rows affected (0.00 sec)
mysql> flush privileges;
Query OK, 0 rows affected (0.01 sec)
# cd /usr/local/www/roundcube/SQL
# mysql -u roundcube -p roundcube < mysql.initial.sql
--
Alvaro
Mais detalhes sobre a lista de discussão freebsd