主題: 解決 FreeBSD 中 templateeditor 中無法 zip 打包下載的方法 作者: reic 於 九月 30, 2006, 07:13:51 下午 修改
引用 class/action/pluginsitearchivetemplatesetaction.class.php class/action/pluginblogarchivetemplatesetaction.class.php 這兩個檔案,在其中找到下列文字 $templateArchive->set_options(array( 'basedir' => $baseBlogTemplateFolder , 'overwrite'=> 1, 'inmemory'=>1)); 修改為 $templateArchive->set_options(array( 'basedir' => $baseBlogTemplateFolder , 'overwrite'=> 1, 'inmemory'=>1,'storepaths'=>3)); 這樣就可以正確的打包下載了 主題: Re: 解決 FreeBSD 中 templateeditor 中無法 zip 打包下載的方法 作者: 大雄 於 十月 03, 2006, 10:33:43 下午 為了這個問題困擾一段時間,不僅是freebsd,linux及windows都有這個問題。謝謝reic兄的提醒...
但無須修改這二支程式,只要修改templateeditor外掛裡的 archive.php (lifetype目錄/plugins/templateeditor/class/archive/archive.php) 這個檔案的參數即可... 程式碼: class archive 其中的參數設定為 'storepaths'=>3, 就可解決 |