HitomaruKonpaku / SadPanda

Chrome extension to access ExHentai
https://exhentai.org/
182 stars 71 forks source link

username does not exist #11

Open bipindr123 opened 5 years ago

bipindr123 commented 5 years ago

new fag here even though its been more than a week and i can login to e-h forums any help is appreciated

HitomaruKonpaku commented 5 years ago

Try open incognito mode (ctrl + shift + n) Then log in from e-h site Navigate to exh

bipindr123 commented 5 years ago

tried didnt work also log in just refreshes the page, after typing multiple times and with wrong info, it changes to username does not exist :(

HitomaruKonpaku commented 5 years ago

Well rip

I have no problem on my side anyway

Roshri commented 5 years ago

I'm having the same issue. I have an old account and I'm suddenly unable to browse the site

NiceAndBreezy commented 5 years ago

I'm having the same issue, I had just done a clean install of windows and this was working prior. Any ideas?

Rumba2000 commented 5 years ago

new fag here even though its been more than a week and i can login to e-h forums any help is appreciated

did you had access to exhentai earlier? Perhaps you haven't been activated there - you have to play ehentai game first for some time, before they'll grant you access to exhentai.

MaximumJoe commented 5 years ago

Playing the HentaiVerse has never been required. Same goes for forums posts or other such nonsense.

Then again this plugin isn't needed either so maybe I'm wasting my breath.

Rumba2000 commented 5 years ago

If it's not needed, why people are using it (extension)?

lessy2021 commented 5 years ago

Same issue. Don't work in incognito with/without extension.

Have just tried with another vpn and got another actual issue - refreshing page.

Want to add that I use this (https://github.com/anticensority/runet-censorship-bypass) script. When it's turned on and using without VPN or in rare cases with some there is "Username doesn't exist" error, when it's with VPN there is a long loading with "Failing to fatch" error and when I just try to get in with VPN without script there is refreshing page. Without SadPands there is... sad panda in any case.

chaoskg commented 5 years ago

had to reset all settings 4 chrome now i cannot login(username does not exist) i was using ver 2.6 untill now. updateing to 4.3 did not solve the problem.

EirunaKonaka commented 5 years ago

Same here. My account was created long ago (like, years), but I cannot access Ex for some reason. So I try this extension, but it keeps saying "Username does not exist!". I'm sure I typed my username and password absolutely right.

dankiote commented 4 years ago

try relogging into your ehentai forum account and then exhentai again

necrokill commented 4 years ago

Had the same problem, my acc was created in 2017. I've tried doing what @dankiote suggested but I had no success.

hellokaka143 commented 4 years ago

Had the same problem. My account was created in dec-2017. I've never been able to bypass Sad Panda ( Used only firefox for these secondary stuff ). Today I tried giving it a shot in Chrome and faced the same Issue.

Anyhow I think this issue is occurring because of captcha.

Try adding this in background.js before the Username does not exist! one. } else if (content.includes('The captcha was not entered correctly. Please try again.')) { sendResponse({ fail: 'Couldn\'t get through captcha' })

I know this doesn't solve the problem, but I hope this helps atleast pinpoint it.

Kaelintha commented 4 years ago

I just did a full system restore and then my extension stopped working for me. I even updated it to 4.0 and now instead of giving me the parsing error it says my username doesn't exist, even though I can login to the e-hentai website with no problem. I've been a member since 2015 so I don't know what the problem is or how to fix it this time.

hellokaka143 commented 4 years ago

Had the same problem. My account was created in dec-2017. I've never been able to bypass Sad Panda ( Used only firefox for these secondary stuff ). Today I tried giving it a shot in Chrome and faced the same Issue.

Anyhow I think this issue is occurring because of captcha.

Try adding this in background.js before the Username does not exist! one. } else if (content.includes('The captcha was not entered correctly. Please try again.')) { sendResponse({ fail: 'Couldn\'t get through captcha' })

I know this doesn't solve the problem, but I hope this helps atleast pinpoint it.

Again referring back to my previous reply. I think Captcha is the reason this is failing.

R3D4CTED commented 3 years ago

@hellokaka143 Captcha is indeed the reason it's failing. I changed the error report to also include the entire error message. Just change:

sendResponse({
      error: {
        message: 'Authentication error!',
        redirect: 'https://forums.e-hentai.org/index.php?act=Login&CODE=01'
      }

to

sendResponse({
      error: {
        message: 'Authentication error. Detailed Trace:'+content
      }

in background.js. This will display the error in the red box itself. Possibly, you can add a print for it to print the thing to console for long term viewing, but it's a captcha issue itself.