Page 1 of 1

url to get latest x64 version numbers

Posted: 10 Jul 2025 22:10
by highend
We have them for the 32-bit version:

Code: Select all

    $relVersion  = readurl("https://www.xyplorer.com/version.php",      1, , 2);
    $betaVersion = readurl("https://www.xyplorer.com/version_beta.php", 1, , 2);
Can we get the same for the 64-bit one?
E.g.:

Code: Select all

    $relVersion  = readurl("https://www.xyplorer.com/version64.php",      1, , 2);
    $betaVersion = readurl("https://www.xyplorer.com/version64_beta.php", 1, , 2);

Re: url to get latest x64 version numbers

Posted: 10 Jul 2025 22:58
by admin
Append ?bit=64 to the original ones.

Re: url to get latest x64 version numbers

Posted: 11 Jul 2025 07:13
by highend
Works now, my XY update script thanks you :mrgreen: