-
Notifications
You must be signed in to change notification settings - Fork 251
Common issues
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
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
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.
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.