Change .CVS delimiter
-
I’m trying to change the default comma (,) delimiter that WPEC import function detects to semicolon (;) with not luck.
I edited import.php in this line:
while ( $row = @fgetcsv( $handle, $length, ',' ) ) {
to something like:
while ( $row = @fgetcsv( $handle, $length, ';' ) ) {
but it isn’t working. Do I’m missing something or doing something wrong?
Thanks in advance.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Change .CVS delimiter’ is closed to new replies.