-
Notifications
You must be signed in to change notification settings - Fork 41
/
rc.php
53 lines (49 loc) · 2.25 KB
/
rc.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
include("include/functions.php");
$TITLE = "Release Candidates";
$SITE_UPDATE = date("D M d H:i:s Y T", filectime(__FILE__));
$CURRENT_PAGE = "What is RC?";
common_header();
?>
<h1>Release Candidates</h1>
<h2>Basics</h2>
<p>
Release candidates are development packages released to check if any critical
problems have slipped into the code during the previous development period.
<i>Release candidates are <b>NOT</b> for production use, they are for testing purposes only</i>
even though in most cases there are almost no differences between the general
availability (GA) release and the last RC.
You can help the PHP Team and yourself detect problems by installing and testing
release candidates on your own (<i>non-production!</i>) server.
</p>
<h2>Installation problems</h2>
<p>
First of all, make sure the build process (on *nix only) and installation went fine for you.
PHP supports quite a number of operating systems on different platforms and we continue
to work on increasing this number.
If you encounter any problems during the installation, we would like to know about them.
</p>
<h2>Testing the installation</h2>
<p>
When done with the build, please run the test engine by using the '<code>make test</code>' command
and send us the results (hit '<code>Y</code>' when it asks you whether to send the report).
This way we'll receive the required information about your system to fix the problems
detected by the test suite (if any). Each and every report goes towards helping us
provide the best software we can, your feedback is a valuable resource and the
PHP group would hereby like to extend their gratitude for your effort.
</p>
<h2>Real-life tests</h2>
<p>
We would also appreciate if you install the RC on your development server and run
your software. This would help us to detect any unintentional changes between
the release candidates and general releases.
Such real-life tests are the most valuable because our test suite does not yet
cover every possible use case (but we're working on that).
</p>
<h2>Getting the Release Candidates</h2>
<p>
The release candidates are available for download from <a href="/">the QA frontpage</a>.
</p>
<?php
common_footer();
?>