'I trying to download as csv from grav site using data-manager , But getting error

I trying to download as csv , But getting error

enter image description here

enter image description here



Solution 1:[1]

It's not a core library issue. An unnecessary forward slash is causing this.

Temporary solution -

  1. Open user/plugins/data-manager/data-manager.php
  2. Goto line 251 and remove '/' added. The entire path along with the filename is already created on the 249 enter image description here

3. The second parameter is also completely unnecessary. You can just make it

$csv_file = File::instance($tmp);

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 sagarjadhav