CKEditor Editor uploads duplicate file name and generates directory store on specified date

Source: Internet
Author: User
Tags php file


1. Implementation of ckeditor/"target=" _blank ">fckeditor in the form of a date catalog upload files, such as today is May 5, 2015, so today's uploaded files are placed in this directory, the uploaded tomorrow will be automatically created and placed in a similar 2015-05-06 such a catalogue goes inside.

(1) Locate the config.php file under the Editor\editor\filemanager\connectors\php\ folder

(2) Find the following configuration variables

$Config [' userfilespath '] = '/uploadfiles/';
Modify its value to:

$Config [' userfilespath '] = '/uploadfiles/'. Date (' y-m-d '). " /';
The uploaded files are stored according to the date.

2. Rename FCKeditor uploaded file method

(1) Locate the editor\editor\filemanager\connectors\php\io.php file:

(2) Find the following content:

.....
Function Sanitizefilename ($sNewFileName) {
 global $Config;
  $sNewFileName = stripslashes ($sNew FileName);
 if ($Config [' forcesingleextension '])
   $sNewFileName = preg_replace ('/\\. [^.] *$)/', ' _ ', $sNewFileName);
  $sNewFileName = preg_replace ('/\\\\|\\/|\\| | \\:|\\?| \\*|"| <|>/', ' _ ', $sNewFileName);
 return $sNewFileName;
}
...
Modify to:

Function Sanitizefilename ($sNewFileName) {
 global $Config;
  $sNewFileName = stripslashes ($ Snewfilename);
 if ($Config [' forcesingleextension '])
   $sNewFileName = preg_replace ('/\\. [^.] *$)/', ' _ ', $sNewFileName);
 //Get extension
  $sExtension = substr ($sNewFileName, (Strrpos ($sNewFileName, '. ') + 1);
  $sExte Nsion = Strtolower ($sExtension);
  $sNewFileName =  date ("Ymdhis"). $sExtension;
 return $sNewFileName;
}
files that are now uploaded are automatically renamed.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.