2014-04-04 88 views
1

我正在使用文件管理器插件(tinymce)上傳圖像。但是我能夠上傳圖像到特定的文件夾,但在圖像列表中它給我錯誤:有錯誤!根文件夾不存在。 在那裏我一直在我的文件管理器插件的路徑是 - 我的文件夾上傳Tinymec4文件管理器錯誤:出現錯誤!根文件夾不存在

\web\bundles\stfalcontinymce\vendor\tinymce\plugins\filemanager 

路徑 -

web\tinymceuploads 

所以我傳遞的參數在文件管理器的config.php文件就像是 -

$base_url="http://localhost/example/web/app_dev.php/web"; //url base of site if you want only relative url leave empty 
    $upload_dir = '/tinymceuploads/'; // path from base_url to upload base dir 
    $current_path = '/../../../tinymceuploads/'; // relative path from filemanager folder to upload files folder 

但在圖像點擊上傳按鈕,我得到的錯誤後上市: 有一個錯誤!根文件夾不存在。請儘快幫助我。它幾乎吃了我的腦袋。 感謝

回答

0

1.Assume您TinyMCE的文件夾位於http://localhost/projectname/tinymce/

2.創建文件夾的圖像下TinyMCE的如:TinyMCE的/圖像

3。至該文件夾的位置TinyMCE的/插件/文件管理/配置。 PHP

4.Go到近15行至20--它會看起來像這樣

BASE_URL = 「HTTP://本地主機/項目名稱/」;

$ upload_dir ='tinymce/images /';

$ current_path ='../../images/';

5.Add此線

$根= '/ TinyMCE的/';$ root ='../tinymce /';

保存並運行項目。

希望它的作品....

0

假設你的目錄是這樣的:

BASE_URL = 「HTTP://本地主機/項目名稱/」; //基地目錄

|

| ________工作目錄//你現在在這個

工作|

| ________ TinyMCE的目錄

錯誤的配置:

base_url="http://localhost/projectname/"; 

$upload_dir = 'http://localhost/projectname/tinymce/images/'; 

$root='http://localhost/projectname/tinymce'; 

權限配置:

base_url="http://localhost/projectname/"; 

$upload_dir = '../tinymce/images/'; // from working folder to tinymce/images 

$current_path = '../../images/'; // tinymce/plugins/filemanager to path tinymce/images 

$root='../tinymce/'; 

您的上傳和根目錄不同的是/圖像單獨

工作對我來說..

0

請調整您的編碼PHP這樣

$root = rtrim($_SERVER['DOCUMENT_ROOT'],'/'); // don't touch this configuration 

//********************** 
//Path configuration 
//********************** 
// In this configuration the folder tree is 
// root 
// |- tinymce 
// | |- source <- upload folder 
// | |- js 
// | | |- tinymce 
// | | | |- plugins 
// | | | |- |- filemanager 
// | | | |- |-  |- thumbs <- folder of thumbs [must have the write permission] 

$base_url="http://localhost"; //url base of site if you want only relative url leave empty 
$upload_dir = '/sik/assets/tinymce/source/'; // path from base_url to upload base dir 
$current_path = '../../../../source'; // relative path from filemanager folder to upload files folder 

$MaxSizeUpload=100; //Mb 
相關問題