flagrow upload fon error debug
- Edited
luceos so, I tried to reinstall some extension (i think some of the extension harmed debug message) so now debug showed the complete error and it gave me this message.
POST http://flarum.dev/api/flagrow/upload
<br />
<b>Warning</b>: fopen(D:\dev\random\flarum\assets\files\2016-12-29\08:15:540-hackermanjpg.jpeg): failed to open stream: Invalid argument in <b>D:\dev\random\flarum\vendor\league\flysystem\src\Adapter\Local.php</b> on line <b>149</b><br />
{"data":[]}
The local adapter doesn't have 149 lines. Once again, what version of flagrow/upload are you running?
- Edited
kzyyy if you could do me a favor ?
Edit the following file:
vendor/league/flysystem/src/Adapter/Local.php
and add after line 148:
$location = $this->applyPathPrefix($path);
$this->ensureDirectory(dirname($location));
// Add the following:
var_dump($location, $path); exit;
// That's it..
$stream = fopen($location, 'w+b');
Run another upload and check the debug pane (or your xhr call in the browser inspection panel, in chrome : F11 and network).
Post what you find out, then delete the vendor directory and run another
composer install --prefer-dist --no-dev
PS. this is related to a windows environment. I'm guessing the directory separator has to be escaped.
- Edited
Sorry if I caused you so much trouble, btw I'll switch to linux environment in the end.
Its just that I was so excited to try flarum and explore it.
I'll give you an update later about this issue. For now, thank you for your time ?