grav-plugin-data-manager
grav-plugin-data-manager copied to clipboard
I trying to download as csv , But getting error
I trying to download as csv , But getting error
Please suggest a solution to resolve this issue
I can reproduce the issue. However, this is not an issue of this plugin, but rather an issue of a library used by Grav core.
I would suggest to add an issue at https://github.com/getgrav/grav/issues which gets more attention from the devs.
HI, I have the same error. I don't know why a /
is appended to temp file name at row 251 of data-manager.php
$csv_file = File::instance($tmp . '/', $tmp_file);
The fix is remove . '/'
:
$csv_file = File::instance($tmp, $tmp_file);