added the bison and flex packages to the dependency list;
added some more clarification to install.html; added /etc/apache2/conf.d as a possible apache config dir in modules/htmlUI/bin/configureApache.sh
This commit is contained in:
parent
84684a912c
commit
4c693b93e6
2 changed files with 19 additions and 8 deletions
|
@ -3,7 +3,7 @@
|
|||
<head>
|
||||
<meta content="text/html; charset=UTF-8" http-equiv="content-type">
|
||||
<title>LiveSupport installation documentation</title>
|
||||
<meta content="$Author: sebastian $" name="author">
|
||||
<meta content="$Author$" name="author">
|
||||
</head>
|
||||
<body>
|
||||
<h1>Preface</h1>
|
||||
|
@ -12,7 +12,7 @@ project, Copyright © 2004 <a href="http://www.mdlf.org/">Media
|
|||
Development Loan Fund</a>, under the GNU <a
|
||||
href="http://www.gnu.org/licenses/gpl.html">GPL</a>.<br>
|
||||
<ul>
|
||||
<li>Author: $Author: sebastian $</li>
|
||||
<li>Author: $Author$</li>
|
||||
<li>Version: $Revision: 1.16 $</li>
|
||||
<li>Location: $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/doc/install.html,v $</li>
|
||||
</ul>
|
||||
|
@ -72,6 +72,10 @@ environment variable WANT_AUTOCONF_2_5="1" before compiling the tools.)</li>
|
|||
<li><a href="http://www.gzip.org/">gzip</a></li>
|
||||
<li><a href="http://sources.redhat.com/bzip2/">bzip2</a></li>
|
||||
<li><a href="http://curl.haxx.se/">curl</a><br>
|
||||
<!-- to compile gstreamer; begin -->
|
||||
<li><a href="http://www.gnu.org/software/bison/bison.html">bison</a> >= 1.35<br>
|
||||
<li><a href="http://www.gnu.org/software/flex/flex.html">flex</a>
|
||||
<!-- to compile gstreamer; end -->
|
||||
</li>
|
||||
</ul>
|
||||
<h2>Libraries</h2>
|
||||
|
@ -122,8 +126,11 @@ importantly a PHP-capable web server (we assume apache), and a database
|
|||
server (we assume PostgreSQL). <br>
|
||||
<h2>Database</h2>
|
||||
LiveSupport expects a <a href="http://www.postgresql.org/">PostgreSQL</a>
|
||||
database, version 7.4 or later, to be installed on your system. The
|
||||
database will be accessed through TCP/IP, usually via the localhost
|
||||
database, version 7.4 or later, to be installed on your system. You will
|
||||
also need a postgresql driver for unixODBC; this may be in the unixODBC
|
||||
package, or may need to be installed separately.<br>
|
||||
<br>
|
||||
The database will be accessed through TCP/IP, usually via the localhost
|
||||
interface. To achieve this, make sure to make the following changes to
|
||||
the PostgreSQL configuration files.<br>
|
||||
<br>
|
||||
|
@ -160,7 +167,10 @@ If you changed this setting, increase "post_max_size" to something bigger than "
|
|||
<br><br>
|
||||
Please note the user group your apache daemon is running as (usually <code>apache</code>
|
||||
or <code>www-data</code>), you will need this information later. Later
|
||||
on in this document, this group will be referred to as <code><apache-group></code>.
|
||||
on in this document, this group will be referred to as <code><apache-group></code>. For the automatic install scripts to work, the user
|
||||
running them must either be <code>root</code>, or belong to
|
||||
<code><apache-group></code>.<br>
|
||||
<br>
|
||||
Also note the document root directory for your apache installation
|
||||
(usually <code>/var/www</code> or <code>/var/www/htdocs</code>
|
||||
or <code>/var/www/<yourhost>/htdocs</code>). Later on in this
|
||||
|
@ -170,7 +180,7 @@ document, this directory will be referred to as <code><www-root></code>.<b
|
|||
Please check if alsa is installed and configured properly.
|
||||
<br><code>cat /proc/asound/cards</code><br> should show entry for your soundcard.
|
||||
<br>
|
||||
If not, maybee you do not have suitable alsa module for your soundcard on the system. Try to
|
||||
If not, maybe you do not have suitable alsa module for your soundcard on the system. Try to
|
||||
<br><code>apt-get install alsa-modules-2.4.27-2-386</code><br>
|
||||
or one other from <a href="http://packages.debian.org/cgi-bin/search_packages.pl?version=stable&subword=1&exact=&arch=any&releases=all&case=insensitive&keywords=alsa-modules&searchon=names" target="_blank">http://packages.debian.org/cgi-bin/search_packages.pl...</a>.
|
||||
<br>
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
#
|
||||
#
|
||||
# Author : $Author: maroy $
|
||||
# Author : $Author$
|
||||
# Version : $Revision: 1.2 $
|
||||
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/htmlUI/bin/configureApache.sh,v $
|
||||
#-------------------------------------------------------------------------------
|
||||
|
@ -102,7 +102,8 @@ echo "Configuring apache ..."
|
|||
CONFFILE=90_php_livesupport.conf
|
||||
AP_DDIR_FOUND=no
|
||||
for APACHE_DDIR in \
|
||||
/etc/apache/conf.d /etc/apache2/conf/modules.d /etc/httpd/conf.d
|
||||
/etc/apache/conf.d /etc/apache2/conf/modules.d /etc/httpd/conf.d \
|
||||
/etc/apache2/conf.d
|
||||
do
|
||||
echo -n "$APACHE_DDIR "
|
||||
if [ -d $APACHE_DDIR ]; then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue