Danbooru

Danbooru 2 Issues Topic

Posted under General

This topic has been locked.

Got another set of errors on my older device for this update, once again breaking translations, collapsing menus, Original/Translated descriptions, and now tag colors. Everything was fine before. Dev tools show four errors(can't copy paste, so paraphrasing here):

SyntaxError Unexpected token ','
Failed to load resource CA Certificate Authentication for matomo.donmai.us/piwik.js
Failed to load resource CA Certificate Authentication for isshiki.donmai.us/post_views
Failed to load resource SSL Connect Error

Last time I was able to temporarily fix jQuery by loading the site directly, and later it was fully fixed without needing to do that. Any possibility for a similar temp-fix or later-on full fix for these?

Edit: and, for some reason now using 'show full size' on an image page causes the image to be downloaded...which, on this device, replaces the video I was watching/listening-to with that still-image.

Edit again, whew, thank you very much, seems to be working fine even on that old-device. ^^;

Updated

Better Better Booru JavaScript not working all of a sudden for me. It shows up as running in Tampermonkey for Chrome but nothings actually working with the pages. I assume JavaScript is just broken right now among the other problems reported.

Kaioshin_Sama said:

Better Better Booru JavaScript not working all of a sudden for me. It shows up as running in Tampermonkey for Chrome but nothings actually working with the pages. I assume JavaScript is just broken right now among the other problems reported.

Yes.

Most of the functions seem to be back now, but in the fetch source data box gives just a "()" instead of a link to either the artist's wiki entry or the create new artist page like it should.

Magus said:

Most of the functions seem to be back now, but in the fetch source data box gives just a "()" instead of a link to either the artist's wiki entry or the create new artist page like it should.

Still looks like JavaScript is broken unfortunately. Hopefully will be working again soon.

I'm once again running into the same issue that I described a month ago in forum post 148117.

I am trying to upload images from https://e-hentai.org/g/1265731/6f00bd8106/ (explicit content warning)

These images are fairly large, most being over 10MB each. When I drag the image from my computer to the upload portion, the loading bar gets about a third of the way done and then just freezes. It doesn't matter how long I wait, it will not progress, and trying to upload the image results in the same error:

ActiveRecord::RecordInvalid exception raised

Validation failed: Md5 confirmation doesn't match Md5
app/logical/upload_service.rb:42:in `start!'
app/controllers/uploads_controller.rb:54:in `create'

EDIT: I have uploaded the images now, but only through use of yande.re as a sort of proxy so that I was not uploading them directly from my computer.

Updated

I have the same problem when I try to upload a webm or mp4 file.

Validation failed: Md5 confirmation doesn't match Md5

The bar upload to almost cross 50% and then freeze.

Also tried the API and give me response 503 (I think) bad gateway or something.

curl -u "username:api-key" -X POST "https://danbooru.donmai.us/uploads.json" -F 'upload[file]'=@file.mp4 'upload[rating]'=s, 'upload[tag_string]'=tagme

Using a html form give me a wall of text, most of it is a json with my upload information.

<form
	method=post
	enctype="multipart/form-data"
	action="https://danbooru.donmai.us/uploads.json">
	
	Login:		<input type="text" name="login" value="username" /><br>
	API-Key:	<input type="text" name="api_key" value="api-key" /><br>	
	File:		<input type="file" name="upload[file]" /><br>
	Rating:		<input type="text" name="upload[rating]" value="s" /><br>
	Tags:		<input type="text" name="upload[tag_string]" value="tagme" /><br>
			<input type="submit" value="Submit" />
</form>

What I've been doing is uploading disk files to a temporary file upload service like uguu or catbox and uploading that way. It's preferable, even, because even before the new upload got fucked again, pre-processed files from disk would expire after a certain amount of time, so I couldn't prepare the uploads fully beforehand and then leave them for a few hours to upload later.