| Summary | Latest Gollem of 04-05-05 |
| Queue | Gollem |
| Type | Bug |
| State | Resolved |
| Priority | 1. Low |
| Owners | slusarz (at) horde (dot) org |
| Requester | td (at) homenet (dot) tzo (dot) com |
| Created | 04/05/2005 (7523 days ago) |
| Due | |
| Updated | 04/06/2005 (7522 days ago) |
| Assigned | |
| Resolved | 04/06/2005 (7522 days ago) |
| Github Issue Link | |
| Github Pull Request | |
| Milestone | |
| Patch | No |
State ⇒ Resolved
Assigned to Michael Slusarz
State ⇒ Unconfirmed
Priority ⇒ 1. Low
Type ⇒ Bug
Summary ⇒ Latest Gollem of 04-05-05
Queue ⇒ Gollem
First, when I put in Gollem dated 04-05-05, as it is and configure my
backends.php as such:
$backends['file'] = array(
'name' => 'Virtual Home Directories',
'driver' => 'file',
'preferred' => '',
'params' => array(
// The base location of user home directories.
'vfsroot' => '/apps/',
// The name of the current user's home directory.
'home' => Auth::getAuth()
),
'attributes' => array('type', 'name', 'download', 'modified',
'size', 'permission', 'owner', 'group')
);
I get:
Notice: Undefined index: label in /http/gollem/lib/Gollem.php on line 165
Looking at the other lines of the backends.php, I went ahead and
changed line 169 to read:
'home' => '/' . Auth::getAuth()
and the previous error went away.
But, now when I go into file manager, I get to my home dir, but when I
go to root and try to go to another shared folder, I get:
Access denied to folder "".
I tracked this down in Gollem.php and in the setDir function on the
first line that reads:
$dir = realpath($dir);
if you comment that out, now everything works great. I can now to
into file manager for the first time, it takes me to my home dir, then
I can click on Root and go to the root of the share, I can now click
on any folder and it will take me there. The only thing that I would
like to see is the option to download multiple files at once.