Heya, folks.
Is there any way to get CKFinder to automatically overwrite when it encounters an existing file with the same name?
Thanks,
- Dave.
Is there any way to get CKFinder to automatically overwrite when it encounters an existing file with the same name?
Thanks,
- Dave.

Wiktor Walc
CTO
--
CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
I'd be interested if you could post that code, if you're still around here... thanks!
Open ckfinder\core\connector\php\phpN\CommandHandler\FileUpload.php
After:
Add the following code:
if (file_exists($sFilePath)) { @unlink($sFilePath); $thumbPath = CKFinder_Connector_Utils_FileSystem::combinePaths($this->_currentFolder->getThumbsServerPath(), $sFileName); @unlink($thumbPath); }Wiktor Walc
CTO
--
CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Wiktor Walc
CTO
--
CKSource - http://cksource.com
--
Follow CKEditor on: Twitter | Facebook | Google+
Thank you