Update URL seems to be wrong
Posted: 24 Oct 2018, 13:52
A few user already reported this issue in the general section.
viewtopic.php?f=30&t=10979
It looks like the script isn't downloading the installationpackage from configserver.com and then is unable to extract the non-existing package.
Updating via shell is still possible,
Paths are available
http://download.configserver.com/cmc.tgz
https://download.configserver.com/cmc.tgz
To me it looks like the update code inside cmc.cgi needs a change.
The sec=TLSv1 is not working anymore. The server "download.configserver.com" is no longer serving TLS v1.0 (which is good), but wget is forced to use TLSv1 to connect to download.configserver. Which results in no download at all.
Thanks for offering this forum.
That is valid for cmc v3.0
In cmc v3.01 the wget enforcement of TLSv1 was removed.
So users need to update via a different way.
viewtopic.php?f=30&t=10979
It looks like the script isn't downloading the installationpackage from configserver.com and then is unable to extract the non-existing package.
Code: Select all
Retrieving new cmc package...
Unpacking new cmc package...
tar (child): cmc.tgz: Cannot open: No such file or directory
tar (child): Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error is not recoverable: exiting now
sh: line 0: cd: cmc: No such file or directory
sh: install.sh: No such file or directory
Tidying up...
...All done.
Paths are available
http://download.configserver.com/cmc.tgz
https://download.configserver.com/cmc.tgz
To me it looks like the update code inside cmc.cgi needs a change.
Code: Select all
wget --sec=TLSv1 -q https://download.configserver.com/cmc.tgz
Thanks for offering this forum.
That is valid for cmc v3.0
In cmc v3.01 the wget enforcement of TLSv1 was removed.
So users need to update via a different way.