Published forked app on marketplace (guidance needed)

It failed several times now. I also tried with imgur, same error, different url. http or https makes no difference. But I will try again periodically. :confused:

Don't you just use curl? From my experience that's the approach that always works for everything, as long as you can set allow_url_fopen to On in php ini, perfectly working example:

private function saveImage($imgUrl, $savePath) {
    
    ini_set('allow_url_fopen', 'On');

    $ch = curl_init($imgUrl);
    $fp = fopen($savePath, 'x');

    curl_setopt($ch, CURLOPT_HEADER, 0);
    curl_setopt($ch, CURLOPT_FILE, $fp);

    curl_exec($ch);
    curl_close($ch);

    fclose($fp);
    return is_file($savePath);

}

Sorry to hear - we will investigate further and get back to you asap

1 Like

For reference: I uploaded the signed and "ready for marketplace upload" bookmarks archive as 10.0 release to my fork:

Can you try to put the image url and the tag in one line instead of three

1 Like

Doh!
Learn to trim people! :smile: :wink:

:tada: Bookmarks is in the new marketplace now!
https://marketplace.owncloud.com/apps/bookmarks

:gift::gift::gift:

Have fun, please use https://github.com/mondjunge/bookmarks/issues for issues

See you around.

3 Likes

:rotating_light: noted!
Thank you all for solving this. And welcome mondjunge to the marketplace :slight_smile:

mondjunge, you can use the "bugs" property in info.xml to show a bugtracker link.
Also, you can use markdown in your app description.

2 Likes

Great work, huge thanks for that!

2 Likes

Already did. The bugs tag is and was already in the info.xml. Your pull request doubles the tag. :wink:

I am not sure though, where the link should show up. Maybe there is an issue.

oh shoot o.o sry, i didnt see that. maybe I should not work till midnight.
The bugs tag gets already saved on upload, PR for frontend display is on the run. It's no issue, it's simply not implemented yet :smiley: