Hi, I tried other plugins for importing csv, but this simple plugin is great. But there are several problems on my webhosting:
1) Open_basedir restriction with /tmp directory and function tempnam
$t_fname = tempnam(md5(''), __CLASS__ . '_');
I have to change it to $t_fname = @tempnam(md5(''), __CLASS__ . '_');and now it works for me.
2) Plugin uses file_get_contents which is blocked by my webhoster. Is it possible to change it to curl or any other way?
I uncomment this line $res = fopen($this->_filename, 'r'); and commented this line: // $res = $this->_patch(); and it works now, but I am not sure if there is any hidden problem...
3) Feature request: Is it possible to create Post Title from for example three columns? For example author in column 1 and title in column 2 and I want to create post title "author: title". It would be great. I know that I can do it directly in the file, but I need to do it everyday which is really boring...
Thank you very much for this great little plugin.