Skip to content

Server Error Importing Cables via .csv #18196

Discussion options

You must be logged in to vote

The error tells you exactly what the problem is: your text file is not valid UTF-8. Specifically, it contains a byte (0xA0) which is not valid as the start of a character in UTF-8.

Maybe your CSV file was created on a Windows box and uses some Windows-specific character set like Windows-1252, or on a system using ISO-8859-1. The character 0xA0 is a non-breaking space in both of those encodings. But if it were encoded in UTF-8, it would appear as the two-byte sequence 0xC2 0xA0.

Either way, you need to convert the file into valid UTF-8 to fix this. Under Linux, the tool "iconv" can be used to do this. You need to specify the source encoding that you created the CSV file with, and the targe…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by ArcticLinx711
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants