[Tickets #735] RESOLVED: not possible to select another backend

bugs at bugs.horde.org bugs at bugs.horde.org
Wed Nov 17 09:15:37 PST 2004


DO NOT REPLY TO THIS MESSAGE. THIS EMAIL ADDRESS IS NOT MONITORED.

Ticket URL: http://bugs.horde.org/ticket/?id=735
-----------------------------------------------------------------------
 Ticket     | 735
 Updated By | tobias.nix at gmail.com
 Summary    | not possible to select another backend
 Queue      | Gollem
 State      | Resolved
 Priority   | 2. Medium
 Type       | Bug
 Owners     | Michael Slusarz
-----------------------------------------------------------------------


tobias.nix at gmail.com (2004-11-17 09:15) wrote:

it is still not possible to switch between the backends. 

my backend.php file looks like this:

$backends['incoming'] = array(
    'name' => 'incoming',
    'driver' => 'file',
    'preferred' => '',
    'params' => array(
        'vfsroot' => '/home/vfs/incoming/',
    ),
    'attributes' => array('type', 'name', 'download', 'modified', 'size',
'permission', 'owner', 'group')
);


$backends['storage'] = array(
    'name' => 'storage',
    'driver' => 'file',
    'preferred' => '',
    'params' => array(
        'vfsroot' => '/home/vfs/storage/',
    ),
    'attributes' => array('type', 'name', 'download', 'modified', 'size',
'permission', 'owner', 'group')
);

the strange thing is, if i add one of this example entries like

$backends['ftp'] = array(
    'name' => 'FTP Server',
    'preferred' => '',
    'driver' => 'ftp',
    'params' => array(
        // The hostname/IP Address of the FTP server
        'hostspec' => 'ftp.example.com',
        // The port number of the FTP server
        'port' => 21,
        // Use passive mode?
        'pasv' => false,
        // Hide all files that match this regex
        // 'filter' => '^regex$'
    ),
    'attributes' => array('type', 'name', 'download', 'modified', 'size',
'permission', 'owner', 'group')
);


it is possible to choose. maybe there is something wrong with my config?






More information about the bugs mailing list