Autor Tópico: squirrelmail  (Lida 2472 vezes)

Offline absouza

  • Usuário Ubuntu
  • *
  • Mensagens: 3
    • Ver perfil
squirrelmail
« Online: 10 de Setembro de 2008, 10:44 »
Galera, instalei o squirrelmail, mais ao colocar no browse http://meudominio/webmail ele simplesmente só aparece o arquivo index.php, e não carrega o squirrelmail, já instalei e reinstalei o apache e php e mesmo assim não funciona, alguém pode me ajudar ?
<?php

/**
 * index.php
 *
 * Redirects to the login page.
 *
 * @copyright &copy; 1999-2007 The SquirrelMail Project Team
 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
 * @version $Id: index.php 12127 2007-01-13 20:07:24Z kink $
 * @package squirrelmail
 */

// Are we configured yet?
if( ! file_exists ( 'config/config.php' ) ) {
    echo '<html><body><p><strong>ERROR:</strong> Config file ' .
        '&quot;<tt>config/config.php</tt>&quot; not found. You need to ' .
        'configure SquirrelMail before you can use it.</p></body></html>';
    exit;
}

// If we are, go ahead to the login page.
header('Location: src/login.php');

?>