php -v will give you your php version
php -v
PHP 4.3.10 (cli) (built: Mar 1 2005 08:30:27)
Copyright (c) 1997-2004 The PHP Group
Zend Engine v1.3.0, Copyright (c) 1998-2004 Zend Technologies
with eAccelerator v0.9.2, Copyright (c) 2004-2005 eAccelerator, by eAccelerator
Here is my gollem/config/conf.php:
<?php
/* CONFIG START. DO NOT CHANGE ANYTHING IN OR AFTER THIS LINE. */
/* CONFIG START. DO NOT CHANGE ANYTHING IN OR AFTER THIS LINE. */
// $Horde: gollem/config/conf.xml,v 1.5.2.2 2005/12/11 18:31:18 slusarz Exp $
$conf['manager']['date_format'] = '%x';
$conf['backend']['backend_list'] = 'none';
$conf['menu']['apps'] = array('accounts', 'gollem', 'imp', 'ingo', 'kronolith', 'mnemo', 'nag', 'turba');
$conf['user']['alternate_login'] = false;
$conf['user']['redirect_on_logout'] = false;
/* CONFIG END. DO NOT CHANGE ANYTHING IN OR BEFORE THIS LINE. */
Here is my gollem/config/backends.php:
more backends.php
<?php
/*
#------------------------------------------------------------
# DO NOT MODIFY THIS FILE! It is updated automatically by the
# SME Server software. Instead, modify the source template in
# an /etc/e-smith/templates-custom directory. For more
# information, see
http://www.e-smith.org/custom/#
# copyright (C) 1999-2003 Mitel Networks Corporation
#------------------------------------------------------------
*/
// This backend uses Horde credentials to automatically log in.
$backends['hordeftp'] = array(
'name' => 'Local FTP Server',
'driver' => 'ftp',
'preferred' => '',
'hordeauth' => true,
'params' => array(
// The hostname/IP Address of the FTP server.
###template this
'hostspec' => 'ftp.YOURDOMAIN.COM',
###template this
// The port number of the FTP server.
'port' => 21,
// Use passive mode?
'pasv' => false,
// Set timeout (in seconds) for the FTP server. Default: 90 seconds
// 'timeout' => 90,
// If true and the POSIX extension is available the driver will map
// the user and group IDs returned from the FTP server with the local
// IDs from the local password file. This is useful only if the FTP
// server is running on localhost or if the local user/group
// IDs are identical to the remote FTP server.
// You must be running a version of Horde >= 3.1 for this parameter to
// have any effect.
// 'maplocalids' => true
),
'loginparams' => array(
// Allow the user to change the FTP server.
// 'hostspec' => 'Hostname',
// Allow the user to change the FTP port.
// 'port' => 'Port'
),
// 'root' => '',
// 'home' => '',
// 'createhome' => false,
// 'filter' => '^regex$',
'attributes' => array('type', 'name', 'download', 'modified', 'size', 'permission', 'owner', 'group')
);
?>
Here is the relevant gollem part in horde/config/registry.php:
$this->applications['gollem'] = array(
'fileroot' => dirname(__FILE__) . '/../gollem',
'webroot' => $this->applications['horde']['webroot'] . '/gollem',
'name' => _("File Manager"),
'status' => 'active',
'menu_parent' => 'myaccount',
'provides' => 'files',
);
/*
$this->applications['gollem-menu'] = array(
'status' => 'block',
'app' => 'gollem',
'blockname' => 'tree_menu',
'menu_parent' => 'gollem',
);
*/
JB