2017-05-10 46 views
0

大家如何使用ckfinder在一整頁沒有CKEditor的

我使用laravel5.2 ckfinder,我想用ckfinder在整個頁面沒有CKEditor的。

我做了文檔說,我可以上傳圖片或文件,我可以查看圖片,但我不能查看像「.doc,.xlsx」這樣的文件,它只是給我看一個文件PNG,在這裏你可以看到截圖 enter image description here

ckfinder/config.php

$config['authentication'] = function() { 
    return true; 
}; 
.... 
$config['backends'][] = array(
    'name'   => 'default', 
    'adapter'  => 'local', 
    'baseUrl'  => '/ckfinder/userfiles/', 
    //'root'   => '', // Can be used to explicitly set the CKFinder user files directory. 
    'chmodFiles' => 0777, 
    'chmodFolders' => 0755, 
    'filesystemEncoding' => 'UTF-8', 
); 

/*================================ Resource Types=====================================*/ 
// http://docs.cksource.com/ckfinder3-php/configuration.html#configuration_options_resourceTypes 

$config['defaultResourceTypes'] = ''; 

$config['resourceTypes'][] = array(
    'name'    => 'Files', // Single quotes not allowed. 
    'directory'   => 'files', 
    'maxSize'   => 0, 
    'allowedExtensions' =>'7z,aiff,asf,avi,bmp,csv,doc,docx,fla,flv,gif,gz,gzip,jpeg,jpg,mid,mov,mp3,mp4,mpc,mpeg,mpg,ods,odt,pdf,png,ppt,pptx,pxd,qt,ram,rar,rm,rmi,rmvb,rtf,sdc,sitd,swf,sxc,sxw,tar,tgz,tif,tiff,txt,vsd,wav,wma,wmv,xls,xlsx,zip', 
    'deniedExtensions' => '', 
    'backend'   => 'default' 
); 

$config['resourceTypes'][] = array(
    'name'    => 'Images', 
    'directory'   => 'images', 
    'maxSize'   => 0, 
    'allowedExtensions' => 'bmp,gif,jpeg,jpg,png', 
    'deniedExtensions' => '', 
    'backend'   => 'default' 
); 

我是否需要配置其他人呢?

回答

0

這是不可能的。 CKFinder不提供.doc和.xlsx文件的預覽功能。

+0

謝謝你的回覆,但是domo在這裏https://cksource.com/ckfinder/demo告訴我,它可以預覽像word或excel文件這樣的文件。所以,我不明白它是如何存檔的? – Sawyer

+0

你可以創建一個截圖嗎?我不確定你在說什麼功能。也許它是PDF預覽? – zaak

+0

是的,它是pdf fomart。在這裏你可以看到截圖:[enter image description here] [1]:https://i.stack.imgur.com/UOXh1.png – Sawyer