You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So I was trying to increase the file size limit for the uploads and I noticed that setting the 'MaxSizeUpload' variable to anything different was not taking effect, so I scrolled down in the file and I found the setConfig function that replaces all the variables but the ignore array is empty so all my custom settings are being overridden.
Line 364: \CoasterCms\Helpers\Admin\FileManager::setConfig($config, ['MaxSizeUpload']);
That helped me to keep my variable as I wanted. Not sure if this was intended or I'm just setting my variables wrong.
The text was updated successfully, but these errors were encountered:
The $ignore param you've found was added as a temporary work around.
Be aware that the change will be lost when the update assets script is run and a new version of the filemanager is downloaded.
I plan to add proper settings for these after I've organised the settings page in the Coaster a bit, so the list doesn't grow too long.
So I was trying to increase the file size limit for the uploads and I noticed that setting the 'MaxSizeUpload' variable to anything different was not taking effect, so I scrolled down in the file and I found the
setConfig
function that replaces all the variables but the ignore array is empty so all my custom settings are being overridden.Line 364:
\CoasterCms\Helpers\Admin\FileManager::setConfig($config, ['MaxSizeUpload']);
That helped me to keep my variable as I wanted. Not sure if this was intended or I'm just setting my variables wrong.
The text was updated successfully, but these errors were encountered: