CkFinder loads a maximum of 128 MB and found out what depends on the RAM. I put in php.ini memory_limit = 8G , in fact 1Gb eventually loads files of the maximum size of 1Gb.
Parameters post_max_size = 10G and upload_max_filesize = 10G does not pay attention.

How to fix that Ckfinder did not use memory, and loaded the temp folder?

    1 answer 1

    Solved the problem by editing php.ini . The problem was in the time of the script. There were underloaded files in the / tmp folder.

    max_execution_time = 86400 # for 24 hours

    max_input_time = 86400

    upload_max_filesize = 40G

    post_max_size = 40G

    memory_limit = 40G #Ckfinder takes the maximum upload file size from here