153 Posts
Hableur
8 years ago
2
Topic

Hi,

I want to import users, and I use Seblod Importer.

My CSV file is like that :

name|username|email|password|sendEmail|registerDate|lastvisitDate
Jxxxxx|lxxxx|jxxxx@gmail.com|384d03edef880faa506494b9428ddc99:L685Bs4UEWMjrKHktHXnhVnMItfJOqoA|0|2010-06-22 16:25:23|2013-07-10 11:33:32

Import works nice, but not for registerDate, which is finaly the date of import, and lastvisitDate, which is 00-00-00 00:00:00. Perhaps it's a normal behaviour of Joola when registering the users, even with importer ?

Thanks

Get a Book for SEBLOD
4229 Posts
Kadministrator
8 years ago
1
Level 1

Problem is those columns are not lowercase-only, remove this lines from administrator\components\com_cck_importer\models\cck_importer.php and it will work, I made issue on github for it https://github.com/Octopoos/SEBLOD/issues/158

if ( count( $fieldnames ) ) {
foreach ( $fieldnames as $k=>$fieldname ) {
$fieldnames[$k] = strtolower( $fieldname );
}
}
153 Posts
Hableur
8 years ago
0
Level 2

Oh, thanks a lot, it's fine !

Get a VIP membership