Author Topic: List Creation Trouble  (Read 4208 times)

Justin

  • Guest
List Creation Trouble
« 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.

DW

  • Administrator
  • Posts: 3787
    • View Profile
    • https://legacy.listmailpro.com
Re: List Creation Trouble
« Reply #1 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
« Last Edit: December 21, 2012, 02:52:26 pm by DW »
Dean Wiebe
ListMailPRO Author & Developer - Help | Support | Hosting