ListMailPRO Email Marketing Software Forums

ListMailPRO Email Marketing Software Forums => General Help & How-To => Topic started by: Justin on December 13, 2012, 03:35:52 pm

Title: List Creation Trouble
Post by: Justin on December 13, 2012, 03:35:52 pm
Every time I try to upload a new list into my account, it does not upload. I get this message saying it was uploaded but when I go back to user database, nothing is there.
Title: Re: List Creation Trouble
Post by: DW on December 21, 2012, 02:50:53 pm
Hmm, it's hard to say exactly what's going on, but we can try a few things.

Does it work properly with a simple test file, such as seen at http://listmailpro.com/help/import ?

Code: [Select]
"John","Doe","john@example.com"
"Jane","Doe","jane@example.com"

Are you on a Mac?  Sometimes Mac users need to add the following to config.php anywhere between the first and last line (starting and closing php tags):

Code: [Select]
ini_set('auto_detect_line_endings', true);
It's odd because it appears ListMail is reading your file and checking the email address formats and finding them correct.

The problem is most likely with the MySQL query that inserts the users.

For v1.88, try changing line 796 of edituser.php from:

Code: [Select]
@mysql_query($cmd,$link);
to:

Code: [Select]
@mysql_query($cmd,$link) or die(mysql_error());
This should output more information in the event of a MySQL error.

Regards, DW