Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MH website not working anymore? #34

Closed
vincentbernat opened this issue Sep 25, 2021 · 3 comments · Fixed by #39
Closed

MH website not working anymore? #34

vincentbernat opened this issue Sep 25, 2021 · 3 comments · Fixed by #39

Comments

@vincentbernat
Copy link

Hey,

It seems http://members.harmonyremote.com/EasyZapper/ is now broken. I get the first page, but clicking on "Next" lead to a 404 error. Fortunately, I was able to bypass it with http://members.harmonyremote.com/EasyZapper/New/ProcLogin/Start.asp?BrowserIsChecked=True.

@vincentbernat vincentbernat changed the title http://members.harmonyremote.com/EasyZapper/ not working anymore? MH website not working anymore? Sep 25, 2021
@ondrej-zary
Copy link

Great, this helped me. I can now login and configure everything. But updating remote fails - website refreshes an empty page infinitely. Seems that the data from Congruity or Concordance did not reach the website.

Wireshark shows that the web server replies with "301 Moved Permanently" - redirects to HTTPS. Concordance does not seem to understand it.

@ondrej-zary
Copy link

Quick workaround: redirect the connection to localhost and proxy it as HTTPS. This works in Debian:

  1. apt install nginx-light
  2. edit /etc/nginx/sites-enabled/default -in "location /" block:
    add "proxy_pass https://members.harmonyremote.com;"
    remove (or comment-out) "try_files $uri $uri/ =404;"
  3. /etc/init.d/nginx restart
  4. /sbin/iptables -t nat -A OUTPUT -p tcp -d 52.44.86.125 --dport 80 -j DNAT --to-destination 127.0.0.1:80

I've updated my Harmony 525!

@swt2c
Copy link
Contributor

swt2c commented Jan 19, 2022

I can confirm this. concordance unfortunately needs to start speaking SSL now. :( I'm working on a fix.

swt2c added a commit to swt2c/concordance that referenced this issue Jan 19, 2022
The old website URL seemed to be returning a 404 error; additionally,
the harmonyremote.com server seems to have moved to HTTPS.

Fixes jaymzh#34.
jaymzh pushed a commit that referenced this issue Jan 21, 2022
The old website URL seemed to be returning a 404 error; additionally,
the harmonyremote.com server seems to have moved to HTTPS.

Fixes #34.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants