You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I really need help.
I cant access my server with internet explorer it just says cannot display
webpage I've tried compatibility mode and that doesn't work it works fine on
chrome
please help
Original issue reported on code.google.com by [email protected] on 8 Dec 2014 at 6:33
The text was updated successfully, but these errors were encountered:
If you are using IE11 this is probably the same issue as #262.
https://code.google.com/p/shellinabox/issues/detail?id=262
And this is the patch ...
--- a/libhttp/httpconnection.c
+++ b/libhttp/httpconnection.c
@@ -568,7 +568,7 @@ void httpTransfer(struct HttpConnection *http, char *msg,
int len) {
// also has difficulties with SSL connections that are being proxied.
int ieBug = 0;
const char *userAgent = getFromHashMap(&http->header, "user-agent");
- const char *msie = userAgent ? strstr(userAgent, "MSIE ") : NULL;
+ const char *msie = userAgent ? strstr(userAgent, "Trident") : NULL;
if (msie) {
ieBug++;
}
Original issue reported on code.google.com by
[email protected]
on 8 Dec 2014 at 6:33The text was updated successfully, but these errors were encountered: