Logged In: YES
user_id=678072

About the deleting of a file is the same problem as you guessed.

FIX:

On line 234 of file lucid_plugins/FileManager/panel.php

Replace:

$body .= '<span id="span'.$count.'" style="display: none">
&nbsp;<strong><a
href="?command=FM_DeleteFile&delete='.$curFileObj.'"title="Confirm
deletion of '.$curFileObj.'">Confirm</a></strong></span>';

with

$body .= '<span id="span'.$count.'" style="display: none">
&nbsp;<strong><a
href="?command=FM_DeleteFile&delete='.$curFileObj.'&amp;sPath='.$sPath.'"
title="Confirm deletion of
'.$curFileObj.'">Confirm</a></strong></span>';

Riccardo