There is a broken link on this help page: https://e621.net/help/show/posts
The 'rating' link shown at: Post Page -> Statistics -> Rating
returns 'Error: Help page does not exist'.
Updated by anonymous
Posted under Site Bug Reports & Feature Requests
This topic has been locked.
There is a broken link on this help page: https://e621.net/help/show/posts
The 'rating' link shown at: Post Page -> Statistics -> Rating
returns 'Error: Help page does not exist'.
Updated by anonymous
DragonFox69 said:
There is a broken link on this help page: https://e621.net/help/show/postsThe 'rating' link shown at: Post Page -> Statistics -> Rating
returns 'Error: Help page does not exist'.
Updated the page to link to the correct help page. Thank you for the heads up.
Updated by anonymous
For all I know, this might be an intentional change. But in case that it isn't...
The forum/wiki thumbnail image spacing has changed. There's now a large invisible border around those. On all sides except on the top:
post #207350 post #843666 post #3507
Updated by anonymous
imagoober said:
Is there some user-editable setting for that? Or is it just a consequence of when I signed up for an account?I looked at the settings for my account, and didn't see any type of setting to change it.
You can change it from your settings page.
Genjar said:
For all I know, this might be an intentional change. But in case that it isn't...The forum/wiki thumbnail image spacing has changed. There's now a large invisible border around those. On all sides except on the top:
post #207350 post #843666 post #3507
Basically instead of using the same code as avatars/the post index, thumbs had it's own code written in dtext. I made it so that they use the same code (which fixed a bug or two).
I'll take a poke at it now, should be easy to make it look like it did before.
Updated by anonymous
parasprite said:
You can change it from your settings page.
Ok, I just didn't realize the proper name for the setting in question. Thanks.
Updated by anonymous
Can't change parent of post #914412
This post doesn't appear to have a parent, but:
When you click "edit", you can see that the "Parent Post ID" field contains the number 6268.
But this number is grayed out, and you can't delete or change it.
Updated by anonymous
Munkelzahn said:
Can't change parent of post #914412This post doesn't appear to have a parent, but:
When you click "edit", you can see that the "Parent Post ID" field contains the number 6268.
But this number is grayed out, and you can't delete or change it.
6268 is just the placeholder. If you type it goes away.
Updated by anonymous
For some reason I can't seem to log in though the API (xml). It just gives me <error type="login failed"/>
Also the /user/show API is broken:
<response> <success type="boolean">false</success> <reason> Unexpected error (f5b60c2d6b37c8333345ab737617ed6e) </reason> </response>
Updated by anonymous
rebane said:
For some reason I can't seem to log in though the API (xml). It just gives me <error type="login failed"/>
Are you using the new API key system? If not check out https://e621.net/user/api_key, just use that instead of your password hash.
Also not sure what's up with /user/show (if it ever worked?), but /user/index works and gives at least some info.
Updated by anonymous
rebane said:
For some reason I can't seem to log in though the API (xml). It just gives me <error type="login failed"/>Also the /user/show API is broken:
<response> <success type="boolean">false</success> <reason> Unexpected error (f5b60c2d6b37c8333345ab737617ed6e) </reason> </response>
I'll look into it. I seem to recall it worked before, but it isn't now. How odd.
Logins are disable through the API unless you have an API key generated. Need to generate an API key before it will go through.
Updated by anonymous
KiraNoot said:
Logins are disable through the API unless you have an API key generated. Need to generate an API key before it will go through.
Well I should have mentioned that I'm getting the <error type="login failed"/> when calling /user/login
My username and password were correct, as I used a bookmark to get the password_hash before and the argument names (name and password) didnt change as far as i can tell or is there another way to get a API key
Edit: also would be nice to get the userID in the response :)
Updated by anonymous
rebane said:
Well I should have mentioned that I'm getting the <error type="login failed"/> when calling /user/login
My username and password were correct, as I used a bookmark to get the password_hash before and the argument names (name and password) didnt change as far as i can tell or is there another way to get a API keyEdit: also would be nice to get the userID in the response :)
It will return an API key to you, but only if you have generated one. If there is no API key on the account, it will always tell you login failed. If there is an API key it returns it through the /user/login page. The documentation is all up to date on the wiki. https://e621.net/help/show/api#basics
You need to generate an API key from the website under the my account page. There is a dedicated page for enabling API access and regenerating api keys.
Updated by anonymous
I found what I believe to be a glitch when using more than one type:[x] line in a single search, which causes only the last line to be searched.
Example: type:gif type:webm
When I do this search, only posts with the webm file type are shown.
Updated by anonymous
FurryMcFuzzball said:
I found what I believe to be a glitch when using more than one type:[x] line in a single search, which causes only the last line to be searched.
Example: type:gif type:webm
When I do this search, only posts with the webm file type are shown.
This is known, and occurs for all metatags. Not having access to the code, I would guess it occurs because the query parsing code just dumps each metatag term into its own dedicated variable, and adds that to the query once it finishes parsing, rather than building the database query as it goes along.
Updated by anonymous
KiraNoot said:
The documentation is all up to date on the wiki. https://e621.net/help/show/api#basics
Thanks, missed that... now it's working again :)
Tho the DMail API seems to be undocumented I guess /dmail/show.xml?id= should not return
<response> <success type="boolean">false</success> <reason> Unexpected error (cfcf61af04fc02eeaedacf6247d0e502) </reason> </response>
(I did send the login and API key with the request)
Maybe it's related to the other one?
Updated by anonymous
savageorange said:
This is known, and occurs for all metatags. Not having access to the code, I would guess it occurs because the query parsing code just dumps each metatag term into its own dedicated variable, and adds that to the query once it finishes parsing, rather than building the database query as it goes along.
This is a very correct assumption, and a current limitation of the parser. Named tags are limited to a single use each. It's something to look into for later, but involves rewriting the entire search system.
Updated by anonymous
rebane said:
Thanks, missed that... now it's working again :)Tho the DMail API seems to be undocumented I guess /dmail/show.xml?id= should not return
<response> <success type="boolean">false</success> <reason> Unexpected error (cfcf61af04fc02eeaedacf6247d0e502) </reason> </response>(I did send the login and API key with the request)
Maybe it's related to the other one?
Undocumented APIs don't have any sort of tests on them, and usually don't have any templates at all. Usually if you're getting an exception for an API that isn't listed in the documentation, it's because there isn't supporting code to format the entities for the API.
Updated by anonymous
Found two super mini UI bugs when searching on https://e621.net/user:
Updated by anonymous
Genjar said:
For all I know, this might be an intentional change. But in case that it isn't...The forum/wiki thumbnail image spacing has changed. There's now a large invisible border around those. On all sides except on the top:
[*snip*]
parasprite said:
Basically instead of using the same code as avatars/the post index, thumbs had it's own code written in dtext. I made it so that they use the same code (which fixed a bug or two).
Confirming that this happens for me as well
not sure to what extent they're related, or if it's something else
Updated by anonymous
titanmelon said:
Confirming that this happens for me as well
not sure to what extent they're related, or if it's something else
It's literally just a minor Stylesheet issue. I put out a patch for it already, it just hasn't been made live yet.
Updated by anonymous
Not sure if this is a bug, but animated images don't seem to be resized (when logged in)
-
https://e621.net/forum/show/176258
https://e621.net/forum/show/167268
https://e621.net/forum/show/150780 (?)
https://e621.net/forum/show/61780
--
parasprite said:
\o/
Updated by anonymous
titanmelon said:
Not sure if this is a bug, but animated images don't seem to be resized (when logged in)
They are when "Dynamically resize images" is set, but not "Show reduced samples."
Updated by anonymous
animperfectpatsy said:
They are when "Dynamically resize images" is set, but not "Show reduced samples."
Correct, our resizer (the thing that resamples images to a lower resolution, not the thing that just shrinks the full-size image down) doesn't support animated images or flashes (at least GIFs, dunno about APNG). A workable solution may just be to dynamically resize those cases even when using samples.
Updated by anonymous
animperfectpatsy said:
TonyLemur said:
Ohh, that was useful! Just tried the reduced samples option, and gif resizing works
The filesizes are the same though, when you download the image (not via Download)
Does it actually allow you to dl the reduced sample version?
AFAICT data-sample_url and src both point to the same thing:
https://static1.e621.net/data/04/a7/04a7b04e4589772285b25dc4bb93d1c9.gif
Updated by anonymous
Known issue: Favorites/Voting are not working right now. It should be resolved in a few minutes.
EDIT: It appears that most write actions are not currently working. We're working on the issue.
EDIT #2: Problem has been resolved. Favorites/Voting/Editing/Uploading should work again.
Updated by anonymous
Jim just tried to kill E6 again. 3c12eb66a4be63ce187eec788c9d0c0f Was his calling card. Tried adding tags to a post, and when hitting enter, he showed up with this.
Updated by anonymous
Is anyone else getting the "He's dead Jim" error message on the upload page?
Edit: Seems to working fine again.
Updated by anonymous
One of my recent tickets (ticket #23908) got submitted twice. But I didn't do anything out of ordinary. Just a temporary hiccup? The servers were having some trouble at the time.
Updated by anonymous
titanmelon said:
Ohh, that was useful! Just tried the reduced samples option, and gif resizing worksThe filesizes are the same though, when you download the image (not via Download)
Does it actually allow you to dl the reduced sample version?
AFAICT data-sample_url and src both point to the same thing:https://static1.e621.net/data/04/a7/04a7b04e4589772285b25dc4bb93d1c9.gif
I meant we could make it so that gifs act like you have "Dynamically resize images" when you have "Show reduced samples" on, since surely if you want to see smaller images, a gif resizing to the window is better than not resizing at all.
Updated by anonymous
I'm too lazy at this moment of time to C/P my problem/bug report, so here's the link: https://e621.net/forum/show/197993
Updated by anonymous
Strongbird said:
On my first attempt to upload post #873493 (warning: absurd res), the post failed to upload, and the error message printed was 'Error: Sample couldn't be created: IDAT: CRC error'.On my second attempt, using the same image with the same tags, sources, etc., the post uploaded fine. Not sure what happened there, since posting other material of even larger res and file size from the same artist and gallery worked fine.
Just had the same problem today trying to upload post #922755 the first time around. Would appreciate someone explaining why this happens.
Updated by anonymous
Since I've found the time to C/P the shit about my problem/bug report from the above link to here, I may get a response...
------------------------------
Bj007pro said:
HTML5/.webm videos on e621 are not working on mobile. - Any other website with HTML5 support for mobile does.
(I'm using iOS8.1 iPad2)
(Not actually sure about Android, because e621.net has an unofficial app for that mobile OS.)So when I load page with a HTML5/.webm video on e621.net the play button shows, but when I hit the/that play button nothing happens, even when I try to play it directly from the "Download" link.
Like I said in the title above, this only happens on e621.net and that all other sites that I have used/been on that have the support of HTML5/.webm for mobile, successfully works every time.
I thought the website..this website deliberately only allowed webm videos so it was instantly supporting mobile users.
(^That didn't meant to sound harshly at all^. ;) )
Updated by anonymous
IIRC iOS doesn't support webm.
Updated by anonymous
banhday said:
IIRC iOS doesn't support webm.
Correct
Updated by anonymous
I'm getting the "He's dead, Jim." error when trying to post blips:
41798716a2384fcc53ed93f296a94b3b
Updated by anonymous
DragonFox69 said:
I'm getting the "He's dead, Jim." error when trying to post blips:41798716a2384fcc53ed93f296a94b3b
Your blip was too long. There just isn't a good error message for it yet.
Updated by anonymous
KiraNoot said:
Your blip was too long.
That's odd, the counter said I still had a few characters remaining, IIRC it was around 247/255.
Could it have been something to do with the formatting?
Updated by anonymous
DragonFox69 said:
That's odd, the counter said I still had a few characters remaining, IIRC it was around 247/255.Could it have been something to do with the formatting?
If you use Windows it might have been counting newlines as 2 characters instead of 1. The on-site counter still has some quirks like that. Also, it's likely that the ö is still being encoded in the db with more than one character as well, which would cause an error like that, even though it passed elsewhere.
I'll see if I can write up a fix tonight.
Updated by anonymous
Yellowfin_Tuna said:
On the subject of blips, there also isn't a proper message for when one tries to save an edit to a blip after the initial "can-edit" period has expired. Just the ol' 500 error. :>
I rarely use blips, and edit timeouts don't apply to admins, so I never knew this was a thing. There is actually a proper message already, the 500 error means there's a bug preventing it from working properly.
I'll see if I can send a fix for the next update.
Yellowfin_Tuna said:
I'm not sure how it happened, but post #927975 got favourited twice by the same user:https://drive.google.com/file/d/0BwfoHrl-2NyieTI4S1hZaUxTVjA/view
https://drive.google.com/file/d/0BwfoHrl-2NyiczVBTmtxdUt0RjA/viewI don't think it's a cache issue on my end since it shows up like that on my phone's browser as well (not logged-in) over the carrier network (as opposed to, say, local wi-fi).
This is a known issue with favorites. Basically it's on our end not yours, so cache wouldn't matter here.
Updated by anonymous
I'm not sure if this has been reported, but the XML API doesn't return artists correctly.
Bug: In the XML response for posts, the artist JSON array is converted into HTML entities twice, meaning that after decoding the HTML entities, there are still HTML entities.
Expected behavior: Raw XML: <artist>["mistydash"]</artist>
Actual behavior: Raw XML: <artist>[&quot;sorcerushorserus&quot;]</artist>
Steps to duplicate: View source on https://e621.net/post/show/929048.xml
Edit: This also appears to be an issue with the <sources> tag also.
Edit 2: Clarified that it's actually being encoded twice.
Updated by anonymous
Bug:
URLs not complete on e926 API
Expected behavior:
URLS have "https://" at the beginning like E621 requests
Actual behavior:
URLs only have "//" at the beginning
Steps to duplicate:
Compare https://e621.net/post/index.xml?tags=nick_wilde%20rating:s to https://e926.net/post/index.xml?tags=nick_wilde%20rating:s and notice the URLs.
Updated by anonymous
Been getting 502 on e926 all day but e621 works fine.
Updated by anonymous
Fenrick said:
Been getting 502 on e926 all day but e621 works fine.
Sorry about that, it looks like it died shortly after I restarted it after the downtime yesterday and the monitoring didn't catch it. Should be running again now.
Updated by anonymous
xjackson22x said:
Bug:
URLs not complete on e926 APIExpected behavior:
URLS have "https://" at the beginning like E621 requestsActual behavior:
URLs only have "//" at the beginningSteps to duplicate:
Compare https://e621.net/post/index.xml?tags=nick_wilde%20rating:s to https://e926.net/post/index.xml?tags=nick_wilde%20rating:s and notice the URLs.
Fixed.
Updated by anonymous
Bug: DText arrows look awful when trying to do a double arrow.
Expected behavior: ↔ (LEFT RIGHT ARROW)
Actual behavior: <→ (LESS-THAN SIGN, RIGHT ARROW)
Steps to duplicate: <-> becomes: <->
As a side not (not sure how useful really), one could always implement:
Updated by anonymous
Chessax said:
Bug: DText arrows look awful when trying to do a double arrow.
Expected behavior: ↔ (LEFT RIGHT ARROW)
Actual behavior: <→ (LESS-THAN SIGN, RIGHT ARROW)
Steps to duplicate: <-> becomes: <->As a side not (not sure how useful really), one could always implement:
- => as ⇒
- <= as ⇐
- <=> as ⇔
<\->
<\\->
Not ideal but better than <->
Updated by anonymous
parasprite said:
<\->
<\\->Not ideal but better than <->
Yup, but I did the ugly variant < - >
Updated by anonymous
Bug:
Blacklisted IDs of a post show up in the avatars of users, even when the checkbox is filled.
Expected behavior:
All blacklisted ID:***** to not be shown as a user's avatar.
Actual behavior:
Blacklisted ID:***** show up.
Steps to duplicate:
Unknown. It immediately works when reinputted, but in an undetermined amount of time, it stops working. It still works for the exact post for searching, though. *if I find out, I'll edit this*
If needed, this is what I'm trying to avoid seeing as an avatar.
Updated by anonymous
Bug: I can't pool posts.
Expected behavior: To have a post be added to a pool when you click on Add
Actual behavior: "Adding post to pool" message meanders for a good while, then turns into "Error: [object Object]"
Steps to duplicate: Attempting to pool.
Updated by anonymous
^ I just encountered a similar error just trying to fav (or upvote, not sure which). waits for a while then "Error: Unexpected error (bca3a3bbe56949888c9edeed0204ec20)"
Updated by anonymous
savageorange said:
^ I just encountered a similar error just trying to fav (or upvote, not sure which). waits for a while then "Error: Unexpected error (bca3a3bbe56949888c9edeed0204ec20)"
Possibly related to the unexpected errors I've been getting for the last hour, randomly, when trying to post comments? I half-assumed it's an issue with my net, but they're not standard networking errors like 404, 403, 500, etc so I don't know what the string is. Kinda looks like a hash though so I'm assuming it's an ID string for the server-side event log.
Error: Unexpected error(3eba9a03b78d7493c9b13f2ed2471ddc)
Error: Unexpected error(d499e33c398c7869e7a5c34675e6e41a)
Error: Unexpected error(e2838fbe364f3f7da8ee56bb22adc5ad)
Error: Unexpected error(1548475aa091aae6ad736eb8f39e4ec0)
Each error is a different attempt to comment that more or less timed out with those popping up at the top, "Comment posted" style, so they're unique strings..
Updated by anonymous
Bug: Can't fav posts [seem to be able to fave some at random]
Expected behavior: add post to favorites
Actual behavior: can't fav and gives error after a minute or two
Error: Unexpected error (bc83fc18ed9615120c51f9976b0a737d)
Error: Unexpected error (7c0080e0818f8f1fc0628fe926aba40c)
Error: Unexpected error (03bab57a598a8dcb3fe9306e4d888050)
Error: Unexpected error (8fb126e932be497f0d7864e7a8b2c6dc)
Error: Unexpected error (ae718198e47554abbdbe1c85a41ae9e2)
Steps to duplicate: fav anything
Updated by anonymous
Professor_PuddinPop said:
Bug: Can't fav posts [seem to be able to fave some at random]
Same as Prof PuddinPop but different error:
Error: Unexpected error (83eaf6002ec45a9bd4c9c37d102c7bc1)
Error: Unexpected error (492c21a87f02ffa1193b24076ba83e55)
Updated by anonymous
As with the above, I seem to be having problems with the comment vote system, where it lags and doesn't display my vote, even after refreshing. Don't know if it's the same thing, though.
Updated by anonymous
Hah, right after posting that report (which I could only see had actually been posted by viewing the topic list) I couldn't even open this thread anymore. Or anything on the forum, really.
My last upload that made me file the complaint in the first place also didn't appear to want to upload, until I looked at the Posts page and it popped up there, while still giving the "posting upload" message in the other tab that was stuck on the upload page.
Oh well, all seems fixed now including the pooling issue.
Updated by anonymous
Favorites seems to be working now, well done.
Updated by anonymous
It looks like some process got hung up during the night and was preventing 70% of actions involving updating users or their statistics from completing. It sadly wasn't quite enough to trigger an alert to wake me up. Sorry about that.
Updated by anonymous
KiraNoot said:
It looks like some process got hung up during the night and was preventing 70% of actions involving updating users or their statistics from completing. It sadly wasn't quite enough to trigger an alert to wake me up. Sorry about that.
No biggie, just glad it got solved in the end, that's what matters.
Updated by anonymous
Over the past few weeks , I'm having problems where images will just stop loading, I have screenshots including the http 400 error
Updated by anonymous
Weird stuff seems to be happening with this anchor tag:
Page navigates to the Body Colors section below
not sure why. Wiki source text:
https://e621.net/wiki/diff?title=tag_group%3Acolors&to=46&from=45
Updated by anonymous
titanmelon said:
Weird stuff seems to be happening with this anchor tag:Page navigates to the Body Colors section below
not sure why. Wiki source text:
https://e621.net/wiki/diff?title=tag_group%3Acolors&to=46&from=45
Not for me, went to: "Borders:" under "Art Color Tags" (where it should)
Updated by anonymous
titanmelon said:
Weird stuff seems to be happening with this anchor tag:Page navigates to the Body Colors section below
not sure why. Wiki source text:
https://e621.net/wiki/diff?title=tag_group%3Acolors&to=46&from=45
Are you adblocking? It might be bumping the text up the missing space if you are.
Updated by anonymous
Furrin_Gok said:
Are you adblocking? It might be bumping the text up the missing space if you are.
Ads don't show on wiki pages.
Updated by anonymous
Bug:
Cheatsheet contains wrong information
https://e621.net/help/show/cheatsheet
Wrong info:
Range syntax section: 'favorites:' metatag lists matching quantity of favorites on a post
Correct info:
'favcount:' metatag, as it does what is being described
Steps to duplicate:
Try the example links, they don't even work
Compare:
current: https://e621.net/post/search?tags=favorites%3A%3C100
fixed: https://e621.net/post/search?tags=favcount%3A%3C100
Not technically a bug, but I figured this would be the best place to put it (also Knotty suggested to).
Updated by anonymous
"She's not alive, Dave" . The gravepage left fffd5cba0dd5513c5fdfc862f42f5efc as their parting message. I tried changing the tags on this (warning, cub and minor BDSM) , and if lead me to the page.
*post written edit* I was able to change the tag after a second time, however.
Updated by anonymous
Siral_Eurgh-xan said:
"She's not alive, Dave" . The gravepage left fffd5cba0dd5513c5fdfc862f42f5efc as their parting message. I tried changing the tags on this (warning, cub and minor BDSM) , and if lead me to the page.
Should be fixed. Just an app server having a bit of a fit.
Updated by anonymous
Site uploader seems to be buging out, yesterday it would simply send the file to the servers but does not continue from there(creating a new post for the file) and today now im getting this http://imgur.com/a/cKHCi
any advice?
Updated by anonymous
Bug:
Sometimes the thumbnails won't load correctly further down on a page. Waiting does nothing, only a refresh will fix this.
Expected behavior:
Thumbnails should have completely loaded at some point and be displayed correctly.
Actual behavior:
After scrolling a page for a bit there won't be any thumbnails. In their place is a list of the first few tags of the picture and then just void.
Steps to duplicate:
It seems to be happening more often when using the search function. It happens about every five searches.
I'm not sure if this is a problem with the site or with my browser. I'm using Chrome with the Imagus extension.
Updated by anonymous
R'D said:
Site uploader seems to be buging out, yesterday it would simply send the file to the servers but does not continue from there(creating a new post for the file) and today now im getting this http://imgur.com/a/cKHCiany advice?
Usually means that the file you're trying to upload is corrupt. If you want to send me a DMail with a link to it I can take a look.
Updated by anonymous
Plaaay said:
Bug:
Sometimes the thumbnails won't load correctly further down on a page. Waiting does nothing, only a refresh will fix this. [...]I'm not sure if this is a problem with the site or with my browser. I'm using Chrome with the Imagus extension.
If this is related to the status bar showing "Waiting for available sockets" (see e.g. SO question) then I can confirm this, although this only happens rarely for me.
Updated by anonymous
Well, good news everyone! Jim's not trying to kill E6 now, it's an Unexpected Error: 3a97215d238dd1716c99c295e9f8cdd1 , from here ...
I tried favoriting the post, and removing it from the pool (the alternate versions can be child/parent posted, or pooled seperately, pooling them as is breaks the pacing of the comic).
*post written edit* i managed to remove it, but now i can't add the correct version. error was Error: [object Object] . this is the proper image, following the theme of the comic.
Updated by anonymous
When trying to favorite post #949667, I'm getting the following message:
Error: Unexpected error (0d57397f80c6af16962abe68225e5c88)
Updated by anonymous
ikdind said:
When trying to favorite post #949667, I'm getting the following message:Error: Unexpected error (0d57397f80c6af16962abe68225e5c88)
Can't seem to upvote it, either.
Voting broken on https://e621.net/post/show/935632 as well.
Updated by anonymous