Page 1 of 1

Lead file size limit?

PostPosted: Wed Dec 20, 2006 3:41 pm
by AlexR
Hi everyone!


Im just wondering. Is there a limit to the number of leads that can be uploaded? Is this only restricted by the maximum program memory in php.ini? I have uploaded 10k leads successfully but it won't load batches longer than that.

I remember reading something like this somewhere in the forum but i cannot find the thread now :(


Thank you!

alejandro

PostPosted: Wed Dec 20, 2006 5:13 pm
by mflorell
There are several variables that you must change in php.ini, and not just the file upload limit. I can't look them up at this moment, but it would be nice if someone would lookup in the php.ini and post here what exactly needs to be changed to raise the file upload limit so that it will work with much larger files.

PostPosted: Sat Dec 23, 2006 4:15 am
by diyanat
The following are php directives that you may need to edit in the /etc/php.ini files , keep values that best suit your environment, generally default values will work fine, u may need to change the values only if uploading large files greater then 2MB


file_uploads = keep this on to enable file uploads

upload_tmp_dir = point to a temporary directory to store uploaded files


upload_max_filesize = maximum file size in bytes that the PHP engine will accept.
Note: increase according to file size to upload


post_max_size = maximum peremitted http post size in bytes,
Note: this should be larger than upload_max_filesize


memory_limit = maximum amount of memory in bytes that is allowed for use by a PHP script
Note: this should be larger than post_max_size
Warning: choose a large memory_limit only if you have sufficient memory


max_input_time = maximum amount of time in secs allowed for each PHP script to receive httpd clients request,
Note: if u have slow connection increase this value

max_execution_time = maximum amount of time in secs allowed for each PHP script to execute.
Note: if uploading large files increase max_execution_time to prevent timeouts.



If you upload files less then 4 MB use the following


file_uploads = On
upload_tmp_dir = "/tmp"
upload_max_filesize = 5120
post_max_size = 10M
memory_limit = 20M
max_input_time = 90
max_execution_time = 60


if your upload file size from 5 MB to 10 MB use the following

file_uploads = On
upload_tmp_dir = "/tmp"
upload_max_filesize = 10240
post_max_size = 16M
memory_limit = 32M
max_input_time = 180
max_execution_time = 120



Diyanat

Re: Lead file size limit?

PostPosted: Sat Nov 17, 2018 10:35 am
by rameez.amjad4
What would be the settings if file size is 100MB to 150MB?

Please Update, Thanks.

Re: Lead file size limit?

PostPosted: Wed Jul 20, 2022 9:21 am
by jayboo876
rameez.amjad4 wrote:What would be the settings if file size is 100MB to 150MB?

Please Update, Thanks.


I'm also facing this issue. Would really like to know what's the recommended setting for the above file size?

Re: Lead file size limit?

PostPosted: Wed Jul 20, 2022 3:20 pm
by williamconley
jayboo876 wrote:
rameez.amjad4 wrote:What would be the settings if file size is 100MB to 150MB?

Please Update, Thanks.


I'm also facing this issue. Would really like to know what's the recommended setting for the above file size?


It's recommended that you set it slightly higher than the largest file you intend to upload. Obviously this is a "per call center" preference since there are no rules or regulations about how many leads you can load in your own dialer at one time.