Import from CSV not working on Mac
-
The Import from CSV works correctly, unless the CSV file was created on a Mac. After some research I see that the problem is in the difference between line endings on Windows and unix-like machines (as your mac is): windows =’/n’ and unix = ‘/r/n’
It *should* be fixed as described here, but this fix did not work: http://stackoverflow.com/questions/16523734/what-is-the-difference-between-windows-csv-and-mac-csvI checked the code and it looks like the import script is executing fine on the first row of the CSV file, but it isn’t making it to the second row (the script just ends and says “No Users Imported” with no errors. Please advise!
The topic ‘Import from CSV not working on Mac’ is closed to new replies.