Opened 18 years ago
Closed 18 years ago
#274 closed Bug (fixed)
Upload inconsitancy in naming
Reported by: | Willem | Owned by: | Alfonso Martínez de Lizarrondo |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | File Browser | Version: | FCKeditor 2.4 |
Keywords: | Cc: |
Description
With the change from 2.3 to 2.4 the upload directories was changed to lowercase to conform better to Unix. I have removed my old uploads and when I run FCK via the file browser, the uploads go to the right place. If I however use the upload tab in the Link dialog, the images are saved to the "root" upload dir. I switch the 'UseFileType' to true in config file of the upload connector, but the image does not get uploaded. The URL that is returned however has Images instead of images.
Where can I change the path of this correctly? I just need to add a tolowercase ..
Change History (6)
comment:1 Changed 18 years ago by
comment:2 Changed 18 years ago by
$sFileUrl = $Config["UserFilesPath"] . strtolower( $sType ) . '/' . $sFileName ;
comment:3 Changed 18 years ago by
Keywords: | upload removed |
---|---|
Milestone: | FCKeditor 2.4.3 |
comment:4 Changed 18 years ago by
Owner: | set to Alfonso Martínez de Lizarrondo |
---|---|
Status: | new → assigned |
#317 has been marked as dup.
For PHP... change line 119 in ../editor/filemanager/upload/php/upload.php to $sFileUrl = $ConfigUserFilesPath? . strtolower( $sType ) . '/' . $sFileName ;
Still not uploading the file, but now the case is correct.. ;)