forcing HTTPS problem lockout Jack
    forcing HTTPS problem lockout Synametrics Support
    forcing HTTPS problem lockout Jack
        forcing HTTPS problem lockout Gary
            forcing HTTPS problem lockout Synametrics Support

From: Jack
Date: 6/25/20 1:41 PM
Topic: forcing HTTPS problem lockout
Type: General Discussions
Post a follow up

my XEAMS cannot be acceseed and it got  locked out CATCH 22

1. XEAMS listening on PORT 80

2. IN server configuration I turned ON FORCE HTTPS  but WEBSITE my WEBSITE  IS NOT SECURE

3. now I cannot access XEAMS ( HTTP:  automatically points to HTTPS , and that displays ERROR : CAN'T ESTABLISH SECURE CONNECTION TO THE SERVER

how to fix it ?

how to change that FORCING HTTPS in  CONFIG FILE ?

Top

From: Synametrics Support
Date: 6/25/20 2:25 PM
Topic: forcing HTTPS problem lockout
Type: General Discussions
Post a follow up

Try the following:

  • Stop Xeams
  • Using Windows File Explorer, go to the installation folder, which should be C:\Xeams. On Linux, the path is usually set to /opt/Xeams. This is called the $INSTALL_DIR.
  • Go to $INSTALL_DIR\config folder and open AppConfig.xml
  • Search for configFlags. If the value is 8, change that to 0.
  • If it is anything other than 8, make a backup copy of your file, temporarily set it to 0 and post another message with the actual value. We will let you know the final value for this parameter.
  • Save the file and restart

The integer you see in configFlags is actually a BITMAP that can hold up to 64 boolean values. Therefore, we will have to do bitmap arithmetic before giving you the final value.

 

Top

From: Jack
Date: 6/27/20 8:29 AM
Topic: forcing HTTPS problem lockout
Type: General Discussions
Post a follow up

I have my XEAMS installed on QNAP NAS server. 

I found AutoConfig.xml inside :

/share/CACHEDEV1_DATA/.qpkg/Xeams/config

and my 

<configFlags>104</configFlags>

 

 

please calculate value for it so FORCE HTTPS is disabled. 

Top

From: Gary
Date: 1/21/21 1:51 PM
Topic: forcing HTTPS problem lockout
Type: General Discussions
Post a follow up

I have the same issue my configFlags value is 1064.

Can someone help please?

 

Thanks

Top

From: Synametrics Support
Date: 1/21/21 2:13 PM
Topic: forcing HTTPS problem lockout
Type: General Discussions
Post a follow up

Change it to 1056.

How To Calculate This Number

Xeams uses a bitmap to store 64 boolean values in a single config parameter. Therefore, in order to switch any one of those numbers you will have to perform a BITWISE XOR operation. Here are the steps:

  • Open the Calculator app on Windows
  • Select the "Programmer" Calculator (upper left)
  • Type your existing value, for example: 1064
  • Select XOR from the Bitwise button. See image below.

  • Type 8, which is the bit location for Force Http flag, and then Equal button. The following screenshot shows the answer when 1064 is XORed with 8.

Top