Skip to content

Common issues

pavel edited this page Aug 13, 2017 · 2 revisions

The RichFilemanager does not work anymore after last update

Please compare filemanager.config.default.json to your JSON configuration file to be sure a new config options has not be added or renamed.

If you use PHP connector don't forget to update package via composer:

composer update

I get "Language file not found" error

By default, the RichFilemanager is set to use English language file. Language can be set by user, setting the language.default option value into your copy of the JSON configuration file.

Opening the RichFilemanager from CKeditor will pass the langCode variable to the application through URL. langCode overwrite all other settings.

So, if you get the Language string error on LANGUAGE_FILE_NOT_FOUND error message, be sure the langCode variable value corresponds to any of them contained in https://github.com/servocoder/RichFilemanager/tree/master/languages/

The name of a language file is a code identifier of the language according to RFC 3066: http://www.i18nguy.com/unicode/language-identifiers.html

Logger is enabled but it takes no effect

JSON configuration file provides options.logger option to enable logger. However it affect client-side notifications solely, which are logged to the browser console.

To collect detailed log to file you have to enable and configure logger for your server-side connector. Take a look PHP connector example.

I get an error uploading some files

This is probably a file size upload limit issue.

Check the upload.fileSizeLimit configuration option description. Note that the value for this option comes from the connector you use and should be defined at the server-side.

Important: (PHP connector note) server settings (upload_max_filesize and post_max_size in php.ini) take precedence over the fileSizeLimit option. So check your server settings.