Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 564481

Summary: I think the download.eclipse.org server has stale content for eclipse.org-common
Product: Community Reporter: Ed Merks <Ed.Merks>
Component: WebsiteAssignee: phoenix.ui <phoenix.ui-inbox>
Status: RESOLVED FIXED QA Contact:
Severity: minor    
Priority: P3 CC: chris.guindon, denis.roy
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows 7   
Whiteboard:

Description Ed Merks CLA 2020-06-19 10:47:27 EDT
I think that's the case because a page like this served via download.eclipse.org has an old footer:

https://download.eclipse.org/justj/www/?page=download

I.e., the footer says:

>>
Eclipse IDE 2019-03

Get the latest version of the Eclipse IDE.
<<

But a page like this served by www.eclipse.org has an up-to-date footer:

https://www.eclipse.org/justj/?page=support

I.e., the footer says:

>>
The Eclipse IDE 2020-06 is now available!
<<

Both these pages use the same PHP inclusions, just from a different host:

$host = $_SERVER['DOCUMENT_ROOT'];
require_once($host . "/eclipse.org-common/system/app.class.php");
require_once($host . "/eclipse.org-common/system/nav.class.php");
require_once($host . "/eclipse.org-common/system/menu.class.php");
require_once($host . "/eclipse.org-common/system/breadcrumbs.class.php");
Comment 1 Christopher Guindon CLA 2020-06-19 11:55:08 EDT
Denis,

Is it a manual process to update eclipse.org-common on download.eclipse.org?
Comment 2 Ed Merks CLA 2020-06-25 02:36:11 EDT
This appears to be working properly now.
Comment 3 Denis Roy CLA 2020-06-25 11:02:08 EDT
I updated eclipse.org-common this week for bug 546528

It's a manual process on both download and archive.e.o
Comment 4 Denis Roy CLA 2020-06-25 11:03:20 EDT
FWIW -- download is optimized for hundreds of millions of file requests -- not for PHP and dynamic pages.