FCKeditor upload file by date and rename method _php instance

Source: Internet
Author: User

1. Implementation of FCKeditor by date in the form of catalog upload files , such as today is May 5, 2015, so today uploaded files are placed in this directory, the uploaded tomorrow will be automatically created and placed in a similar directory like 2015-05-06.

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

(2) Find the following configuration variables

View Code Printing

Copy Code code as follows:

$Config [' userfilespath '] = '/uploadfiles/';

Modify its value to:

View Code Printing

Copy Code code as follows:

$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:

Copy Code code as follows:

......
function Sanitizefilename ($sNewFileName) {
Global $Config;
$sNewFileName = Stripslashes ($sNewFileName);
if ($Config [' forcesingleextension '])
$sNewFileName = Preg_replace ('/\\. [^.] *$)/', ' _ ', $sNewFileName);
$sNewFileName = Preg_replace ('/\\\\|\\/|\\| | \\:|\\?| \\*|"| <|>/', ' _ ', $sNewFileName);
return $sNewFileName;
}
......

Modified to:

Copy Code code as follows:

function Sanitizefilename ($sNewFileName) {
Global $Config;
$sNewFileName = Stripslashes ($sNewFileName);
if ($Config [' forcesingleextension '])
$sNewFileName = Preg_replace ('/\\. [^.] *$)/', ' _ ', $sNewFileName);
Get extension
$sExtension = substr ($sNewFileName, (Strrpos ($sNewFileName, '. ') + 1));
$sExtension = Strtolower ($sExtension);
$sNewFileName = Date ("Ymdhis"). $sExtension;
return $sNewFileName;
}

The uploaded file is now 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.