[cvs] [Wiki] changed: HordeHEADHowTo

Jan Schneider jan at horde.org
Sat Oct 9 09:32:44 PDT 2004


jan  Sat,  9 Oct 2004 09:32:44 -0700

Modified page: http://wiki.horde.org/display.php?page=HordeHEADHowTo
New Revision:  2.0

@@ -1,99 +1 @@
-I wrote this some weeks ago for remembering and reducing trouble for next installation of HORDE etc.
 
-Almost all should be done with copy & paste. I assume you have read the docs coming with the Horde-modules. I also assume you are using mysql for storing data and you are able to edit several files in horde/config and other modules to match your environment.
-
-I also want to mention that the following code is quick and dirty pasted from my install which was done with !RedHat 7.3 and Fedora Core 1, but should work at least with all other compatible distributions. I am running this for private uses and at university I am working for, both without trouble.
-
-So let's go on:
-
-Open a bash or similar:
-
-cd to your web server's document-tree
-
-<code>
-export CVSROOT=:pserver:cvsread at anoncvs.horde.org:/repository
-cvs login (password: "horde")
-cvs co horde
-
-cd horde
-cvs co framework
-
-cd scripts/sql
-mysql -u root -p <create.mysql.sql
-mysql -u root -p horde <auth_initial_user.sql  (creates admin:admin)
-mysql -u root -p horde <sessionhandler.sql
-</code>
-
-.... same procedure with token.sql, log.sql etc. if you want to use these ....
-
-<code>
-cd ../../config/
-for foo in *.dist; do cp $foo `basename $foo .dist`; done
-vi conf.php   	(edit: auth, category, session etc.)
-</code>
-
-change auth to this:
-$conf['auth']['admins'] = array('admin');
-
-Open your Browser: http://your.domain.tld/horde/test.php
-
-PEAR is missing something? Okay:
-
-<code>
-cd ../framework/
-./install-packages.php
-</code>
-
-Looks better, if there are missing packets do "pear install x_y"
-
-Then login to http://your.domain.tld/horde/ as admin:admin and go to  Administration--> users --> only if you did install turba (see below)
-
-Lean back, get a cool beer or somewhat else conveniant:
-
-<code>
-cd /path/to/horde/
-cvs co imp kronolith nag mnemo trean jonah rakim klutz ...
-</code>
-
-all modules you want to have to be installed. See: ((Modules))
-
-Then for each module:
-
-<code>
-cd <modulename>/config/
-for foo in *.dist; do cp $foo `basename $foo .dist`; done
-cd ../scripts/drivers (could vary, e.g. scripts/database)
-mysql -u root -p horde <modulename.sql
-</code>
-
-Horde-->login-->Configuration--> <modulename> creates a conf.php, copy this to horde/<modulename>/config/conf.php
-
-Repeat this for each module you did install. Some don't need doing the foo-ing or inserting to mysql.
-
-So you are nearly done. The menubar can be configured through horde/config/registry.php
-
-To add users via the GUI:
-
-<code>
-cd  /path/to/horde/		(for easier creation of new users)
-cvs co turba
-cd turba/config
-for foo in *.dist; do cp $foo `basename $foo .dist`; done
-cd ../scripts/drivers
-mysql -u root -p horde <turba.sql
-</code>
-
-edit turba/config/sources.php:   (I only use
-<code>
-$cfgSources['localsql'] = array(
-    'title' => _("My Addressbook"),
-    'type' => 'sql',
-    ................
-    ................ )
-</code>
-
-Like I said before, this is a quick and dirty manual. You _really_ should have read the docs before trying this, I wrote this stuff for just remembering myself.
-
-Andy
-
-andy at stronzo.d2g.com


More information about the cvs mailing list