The best way I find to diagnose problems with contact lists is to log into MySQL directly and query the data from the table (vicidial_list).
You can get to MySQL in the standard installation through /usr/local/mysql/bin/mysql in a terminal then if you do something like:
- Code: Select all
use asterisk;
SELECT lead_id, list_id, phone_number, title, first_name, last_name, address1, postal_code FROM vicidial_list ORDER BY lead_id DESC LIMIT 0,10;
Then you should be able to see the most important data from the list you have just uploaded.
I expect the problem you have is that the list_id in the data you have uploaded does not match the list_id you have declared in the Admin GUI. This could happen if your | delimited file did not have the correct number of fields in each row so that the list_id field became out of place some how.
If you run that query and post the output back here I will take a look and see if I can find anything.
Henry