I wrote a custom import filter. When I execute it, it works, but displays some warnings
Warning: file_get_contents() [function.file-get-contents]: Filename cannot be empty in /var/www/html/xataface-1.1.5r2/Dataface/ImportForm.php on line 301
Warning: Invalid argument supplied for foreach() in /var/www/html/xataface-1.1.5r2/Dataface/ImportForm.php on line 313
Warning: array_keys() [function.array-keys]: The first argument should be an array in /var/www/html/xataface-1.1.5r2/Dataface/RecordGrid.php on line 99
Warning: Invalid argument supplied for foreach() in /var/www/html/xataface-1.1.5r2/Dataface/RecordGrid.php on line 159
When I try to import a very large set of data (a 2.1 MB file contaning more than 12K CSV entries), it gives me the following warnings:
Warning: array_keys() [function.array-keys]: The first argument should be an array in /var/www/html/xataface-1.1.5r2/Dataface/RecordGrid.php on line 99
Warning: Invalid argument supplied for foreach() in /var/www/html/xataface-1.1.5r2/Dataface/RecordGrid.php on line 159
And it tells me there is only 1 entry to import! Is it possible to import such a large data set?
Charles