在PHP環境下配置FCKeditor編輯器上傳圖片,可以按照以下步驟進行操作:
下載FCKeditor編輯器的最新版本,并解壓到網站的目錄中。
打開FCKeditor目錄中的“editor/filemanager/connectors/php/config.php”文件。
找到以下代碼塊:
// SECURITY: You must explicitelly enable this "connector". (Set it to "true").
$Config['Enabled'] = false ;
將$Config['Enabled']
的值設置為true
,啟用上傳文件的功能。
$Config['UserFilesPath'] = '/userfiles/' ;
$Config['UserFilesAbsolutePath'] = '' ;
根據你的需要,設置$Config['UserFilesPath']
和$Config['UserFilesAbsolutePath']
的值。$Config['UserFilesPath']
是相對于網站根目錄的路徑,用于存儲上傳的文件。$Config['UserFilesAbsolutePath']
是絕對路徑,指向存儲上傳文件的實際目錄。
$Config['AllowedExtensions']['File'] = array() ; // All file types allowed by default.
$Config['DeniedExtensions']['File'] = array() ; // No files denied by default.
$Config['AllowedExtensions']['Image'] = array() ; // Images types allowed by default.
$Config['DeniedExtensions']['Image'] = array() ; // No images denied by default.
$Config['AllowedExtensions']['Flash'] = array() ; // Flash allowed by default.
$Config['DeniedExtensions']['Flash'] = array() ; // Flash denied by default.
根據你的需要,設置允許或禁止上傳的文件類型。將文件類型添加到相應的數組中。
現在,你已經成功配置了FCKeditor編輯器的圖片上傳功能。用戶可以在編輯器中使用上傳圖片的功能了。