[Help] SSL on port 80 is probably incorrect!
Ok guys, my launcher stay in "Checking for new updater"...?
I use port 80 and gDomainUseSSL is False!
Why my laucher still telling me, my ssl is 1 in logs?
Code:
#if 1 const char* gDomainIP = "massacrepvp.no-ip.info";
const char* gDomainBaseUrl= "/api/";
int gDomainPort = 80;
bool gDomainUseSSL = false;
#else
const char* gDomainIP = "localhost";
const char* gDomainBaseUrl= "/api/";
int gDomainPort = 56016;
bool gDomainUseSSL = false;
#endif
In HttpDownload.cpp:
Code:
int port = 80;
if(strnicmp(full_url, "https", 5) == 0)
port = 80;
My Log:
Code:
--- Log started at Fri Apr 26 22:25:26 2013
000000.000| r3dFile: can't open game.ini
000000.000| Can't open file "game.ini"
000000.000| r3dFile: can't open local.ini
000000.000| Can't open file "local.ini"
000000.010| Input Devices enabled: Mouse, Keyboard
000000.041| VMEM As seen through DDRaw: 1005
000000.042| VMEM As seen through WMI: 0
000000.072| We have 2781 MB texture memory
000000.072| r3dFont: Creating Verdana 10pt
000000.073| r3dFont: Finished creating Verdana 10pt
000000.073| r3dFont: Creating Tahoma 12pt
000000.074| r3dFont: Finished creating Tahoma 12pt
000000.074| r3dFont: Creating Tahoma 10pt
000000.074| r3dFont: Finished creating Tahoma 10pt
000000.074| r3dFont: Creating Tahoma 9pt
000000.074| r3dFont: Finished creating Tahoma 9pt
000000.335| Starting updater, v:0.9.3, cmd:
000000.335| Checking for new updater
000000.366| !resp ChilkatLog:
SynchronousRequest:
DllDate: Jun 14 2011
UnlockPrefix: ARKTOSHttp
Username: EDUARDOMAIA-PC:EduardoMaia
Architecture: Little Endian; 32-bit
Language: Visual C++ 9.0
domain: massacrepvp.no-ip.info
port: 80
ssl: 1
OriginallySetFromUrl: http://massacrepvp.no-ip.info/wz/updater/woupd.xml
RequestData:
HttpVersion: 1.1
Verb: GET
Path: /wz/updater/woupd.xml
Charset: utf-8
SendCharset: 0
MimeHeader:
ReadTimeout: 60
ConnectTimeout: 30
httpConnect:
hostname: massacrepvp.no-ip.info
port: 80
ssl: 1
SSL on port 80 is probably incorrect! Normally HTTP on port 80 is non-SSL and port 443 is for SSL.
ConnectTimeoutMs: 30000
calling ConnectSocket2
AddrInfoList:
AddrInfo:
ai_flags: 0
ai_family: 2
ai_socktype: 1
ai_protocol: 0
ai_addrlen: 16
ai_canonname: (NULL)
Connect using IPV4.
ipAddress1: 127.0.0.1
myIP_3: 127.0.0.1
myPort_3: 60767
connect successful.
numBytesRequested: 20027
Connection closed by server.
Failed to read TLS record (2)
tlsRec_msg: 0
msgLen: 20527
Failed to read incoming handshake messages. (1)
Client handshake failed.
Failed to connect.
Failed.
Re: [Help] SSL on port 80 is probably incorrect!
Re: [Help] SSL on port 80 is probably incorrect!
if(strnicmp(full_url, "https", 5) == 0)
set https to http?
maybe idk i had same problem and changed it to http
Re: [Help] SSL on port 80 is probably incorrect!
Quote:
Originally Posted by
norulez
if(strnicmp(full_url, "https", 5) == 0)
set https to http?
maybe idk i had same problem and changed it to http
Dont work dude, i think the problem is in IIS config, i dont know :( I'm trying like a hell to fix it!
Re: [Help] SSL on port 80 is probably incorrect!
There are several places that your port can be marked as SSL. i'd search for both 443 and https://whateveryouripis. Also make sure all UseSSL's are set to false. Oh one more thing that can cause issues with the updater, your rsbuild.xml file might say https:// at the top in the cdn url. You might need to rebuild if that is set incorrectly. Unless your setup for incremental updates you will need to delete the old data folder there.
Re: [Help] SSL on port 80 is probably incorrect!
Quote:
Originally Posted by
devmodeon
There are several places that your port can be marked as SSL. i'd search for both 443 and
https://whateveryouripis. Also make sure all UseSSL's are set to false. Oh one more thing that can cause issues with the updater, your rsbuild.xml file might say https:// at the top in the cdn url. You might need to rebuild if that is set incorrectly. Unless your setup for incremental updates you will need to delete the old data folder there.
Https in cdn url dont work! My Rsbuild.xml is http!
All possibles places in code to change ssl and port 443 are false and 80!
I will try to start again from begin and report some errors here to help other peoples!
Re: [Help] SSL on port 80 is probably incorrect!
Ok, i solved my problem, i just activate ssl in my IIS!
Re: [Help] SSL on port 80 is probably incorrect!
Terribly sorry to have not caught this sooner for you. Especially with all the help you've been giving people.
I just wanted to say it was noted and appreciated in the section by myself and everyone you've helped.
Great community spirit!