Como instalar o Horde Webmail no Ubuntu 14.04?

2

Estou usando o Ubuntu 14.04. Estou preso com o seguinte problema:

Meu objetivo é instalar e executar HORDER GROUPWARE 5.2 no meu domínio / hospedagem:

Download no Github:
https: // github.com / horde / horde / releases / tag / groupware-5.2.2
Instalação no Github:
link
Demonstração:
link

Quick Install

These are very terse instructions how to install Horde Groupware and its prerequisites on a LAMP sytem. They are addressed to experienced administrators who know exactly what they are doing. For more detailed instructions, start reading below at Prerequisites_.

     
  1. Compilando o PHP para o Apache 2 ::

         

    cd php-x.x.x /    ./configure --with-apxs2 = / usr / sbin / apxs2 \                --with-gettext --enable-mbstring = all --enable-mbregex \                --with-gd --with-png-dir = / usr --with-jpeg-dir = / usr \                [--with-mysql | --with-pgsql | --with-oci8]                [--com-arrumado]                [--com-ftp]    faço    make install

  2.   

Não é possível nem começar com este método porque não existe tal pasta "php-x.x.x" na minha raiz do ubuntu, e não existe tal coisa na internet chamada "compiling php for apache2". Alguma idéia?

  1. Restart Apache.

  2. Register Horde PEAR channel::

    pear channel-discover pear.horde.org

  3. Set Horde installation directory::

    pear install horde/horde_role pear run-scripts horde/horde_role

  4. Install Horde Groupware::

    pear install -a -B horde/groupware

  5. Run installation script::

    groupware-install

  6. Test Horde Groupware::

    http:// your-server /horde/test.php

Por isso, tento instalá-lo com a outra forma explicada no guia de INSTALAÇÃO:

Prerequisites

The following prerequisites are REQUIRED for Horde Groupware to function properly.

  1. A webserver that supports PHP.

    Horde Groupware is primarily developed under the Apache and Lighttpd webservers, which we recommend. These servers are available from:

    http:// httpd.apache .org/ http:// www.lighttpd .net/

(minha nota: eu uso o Apache 2 eu tenho LAMP já instalado e funcionando bem no meu sistema operacional)  ESTÁ BEM! Feito,

  1. A web server with PATH_INFO support.

    The dynamic interfaces of Horde Groupware requires a web server that correctly sets the PATH_INFO environment variable for all PHP scripts. Every modern web server supports this, but you might have to enable this feature in the web server configuration. e.g. Apache servers require::

    AcceptPathInfo On

    Lighttpd servers require::

    "broken-scriptfilename" => "enable"

Não é possível continuar a partir deste ponto que eu não consigo encontrar na internet "Como configurar o servidor web apache e alterar AcceptPathInfo para ON,

  1. PHP 5.3.0 or above.

    PHP is the interpreted language in which Horde Groupware is written.

    .. Note:: If possible, you should install PHP with your operating system's package manager. Alternatively you build PHP yourself.

    To build PHP from sources, you can obtain it at

    http:// www.php .net/

    Follow the instructions in the PHP package to build PHP for your one of the following options:: system. If you use Apache, be sure to build PHP as a library with

    --with-apache --with-apxs --with-apxs2

etc, etc, etc more on the INSTALLATION link.

Alguma idéia de como continuar instalando? não há recursos na internet (vídeos ou tutoriais) sobre como instalá-lo de uma maneira diferente ou algo parecido, apenas para versões mais antigas como o HORDE GROUPWARE 1.2, mas este é um software muito antigo, o que estou tentando instalar é o 5.2

    
por fuegofuego2 25.10.2014 / 02:45

1 resposta

2

O Horde não é apenas um aplicativo, mas um pacote de vários pacotes, cada um executando uma determinada tarefa. Cada uma delas tem, por sua vez, suas próprias dependências que devem ser configuradas antecipadamente. Embalar (e manter) algo assim seria uma carga enorme de trabalho impactando relativamente poucos usuários; assim, a instalação manual é praticamente a sua única opção.

No Wiki da comunidade, você tem um guia de instalação detalhado , que pode facilitar a tarefa até certo ponto. Mas ainda requer algum compromisso.

    
por Luís de Sousa 25.10.2014 / 09:32