RM 1.0 Resource Manager Shows Error When Uploading File

TheBigK

Well-known member
I'm trying to upload a 39 MB file to our resource manager and I get following error when the file upload is complete -

Security error occurred. Please press back, refresh the page, and try again.

My max upload size for RM is 50 MB.

Where exactly should I look at to fix this problem?
 
There are multiple settings listed on that page that need to be changed, and the web server likely needs to be restarted after changing. (There may also be web server limits in play.)
 
I also had this when uploading a large file.

I had to increase:

max_execution_time = 120
max_input_time = 120
memory_limit = 512M
post_max_size = 60M
upload_max_filesize = 60M
 
Top Bottom