|
|
|
@ -4,6 +4,8 @@ This file serves the latest Java version locations for the Windows installer.
|
|
|
|
|
|
|
|
|
|
JAVA VERSION
|
|
|
|
|
http://www.java.com/de/download/manual.jsp BundleId +1 / +2
|
|
|
|
|
Use this User-Agent to see the 64bit version link:
|
|
|
|
|
Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Win64; x64; Trident/4.0)
|
|
|
|
|
|
|
|
|
|
$_GET['what'] should be 'jre'
|
|
|
|
|
$_GET['version'] 32 or 64 (bit)
|
|
|
|
@ -15,12 +17,12 @@ $_GET['yacyrevnr'] not used yet
|
|
|
|
|
if ($_GET['what'] == 'jre') {
|
|
|
|
|
|
|
|
|
|
if($_GET['version'] == 32)
|
|
|
|
|
// jre-6u18-windows-i586.exe
|
|
|
|
|
header('Location: http://javadl.sun.com/webapps/download/AutoDL?BundleId=37718');
|
|
|
|
|
// jre-6u21-windows-i586.exe
|
|
|
|
|
header('Location: http://javadl.sun.com/webapps/download/AutoDL?BundleId=41724');
|
|
|
|
|
|
|
|
|
|
if($_GET['version'] == 64)
|
|
|
|
|
// jre-6u18-windows-x64.exe
|
|
|
|
|
header('Location: http://javadl.sun.com/webapps/download/AutoDL?BundleId=37401');
|
|
|
|
|
// jre-6u21-windows-x64.exe
|
|
|
|
|
header('Location: http://javadl.sun.com/webapps/download/AutoDL?BundleId=41293');
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|