Asterisk phone book import line limit

I found that the import will fail with a file over 870+ lines .

As our file had 5700 lines, we split the file and imported in parts.

using linux cli:

split -d -l 800 text-file

makes these files: 

x00 x01 x02 x03 x04 x05 x06 x07

then import one at a time 
1 Like

I think that it is the memory setting in PHP that sets that limit.
Check your /etc/php.ini for the line memory_limit= what it is set to.