optimize server/software when RM contains huge data ?

erich37

Well-known member
I am wondering what I need to do with my server/software and what kind of stuff is required, if I want to populate my "Resource Manager" with about 5000 big-size .pdf-Files (each single .pdf-File contains about e.g.: 300 pages) ?

- Do I need to use a dedicated server ?
- Do I need to use some sort of Cache ?
- Do I need to use a CDN ?
- Do I need to use a Cloud Storage Service ?
- Do I need to use anything else ?


Many thanks!
 
1) Make sure you have enough storage space on the server.

2) You may need to increase some server settings to accommodate large file uploads. Here are some server settings that may be limiting:

PHP:
max_execution_time
memory_limit
post_max_size
upload_max_filesize

MySQL:
max_allowed_packet
max_packet_size
wait_timeout

There is also a 30 second js timeout you may wish to increase as shown here:

http://xenforo.com/community/thread...-nodes-updating-usergroups.28811/#post-333911
 
Top Bottom