• Support
  • flagrow upload fon error debug

luceos Yeah, the debug only shows the error message until that part.

edit: I mean literally <fon

    kzyyy

    Could you provide some basic information:

    • flagrow upload version (see admin, extensions)
    • the upload adapter you configured

      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?

        luceos Im currently using 0.3.8 and I didnt modify any files within the extension

          kzyyy Yes my bad, it is mentioning the league flysystem local adapter. I'm looking into it.

          kzyyy my guess is that your Flarum installation has no rights to write to the D:\dev\random\flarum\assets\files\2016-12-29 directory. Noticing you are on Windows, did you give the web user read and write access to all folders in assets and its subdirectories?

            luceos I can upload profile picture though, that means my user have the rights inside asset folder right?

              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

              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 ?