為了這個問題困擾一段時間,不僅是freebsd,linux及windows都有這個問題。謝謝reic兄的提醒...
但無須修改這二支程式,只要修改templateeditor外掛裡的 archive.php (lifetype目錄/plugins/templateeditor/class/archive/archive.php) 這個檔案的參數即可...
class archive
{
function archive($name)
{
$this->options = array(
'basedir'=>".",
'name'=>$name,
'prepend'=>"",
'inmemory'=>0,
'overwrite'=>1,
'recurse'=>1,
'storepaths'=>1, (預設為1)
'level'=>3,
'method'=>1,
'sfx'=>"",
'type'=>"",
'comment'=>""
);
$this->files = array();
$this->exclude = array();
$this->storeonly = array();
$this->error = array();
}
其中的參數設定為
'storepaths'=>3, 就可解決