xref: /web-bugs/templates/pages/index.php (revision 03e280e9)
1<?php $this->extends('layout.php', ['title' => 'Bugs homepage']) ?>
2
3<?php $this->start('content') ?>
4
5<h1>PHP Bug Tracking System</h1>
6
7<p>Before you report a bug, please make sure you have completed the following
8steps:</p>
9
10<ul>
11    <li>
12        Used the form above or our <a href="/search.php">advanced search page</a>
13        to make sure nobody has reported the bug already.
14    </li>
15
16    <li>
17        Make sure you are using the latest stable version or a build from Git,
18        if similar bugs have recently been fixed and committed.
19    </li>
20
21    <li>
22        Read our tips on <a href="/how-to-report.php">how to report a bug that
23        someone will want to help fix</a>.
24    </li>
25
26    <li>
27        Read the <a href="https://wiki.php.net/security">security guidelines</a>,
28        if you think an issue might be security related.
29    </li>
30
31    <li>
32        See how to get a backtrace in case of a crash:
33        <a href="/bugs-generating-backtrace.php">for *NIX</a> and
34        <a href="/bugs-generating-backtrace-win32.php">for Windows</a>.
35    </li>
36
37    <li>
38        Make sure it isn't a support question. For support, see the
39        <a href="https://php.net/support.php">support page</a>.
40    </li>
41</ul>
42
43<p>Once you've double-checked that the bug you've found hasn't already been
44reported, and that you have collected all the information you need to file an
45excellent bug report, you can do so on our <a href="/report.php">bug reporting
46page</a>.</p>
47
48<h1>Search the Bug System</h1>
49
50<p>You can search all of the bugs that have been reported on our
51<a href="/search.php">advanced search page</a>, or use the form at the top of the
52page for a basic default search. Read the <a href="/search-howto.php">search howto</a>
53for instructions on how search works.</p>
54
55<p>If you have 10 minutes to kill and you want to help us out, grab a random
56open bug and see if you can help resolve it. We have made it easy. Hit
57<a href="/random">random</a> to go directly to a random open bug.</p>
58
59<p>Common searches</p>
60
61<ul>
62    <?php foreach ($searches as $title => $link): ?>
63        <li><a href="<?= $this->noHtml($link) ?>"><?= $this->e($title) ?></a></li>
64    <?php endforeach ?>
65</ul>
66
67<h1>Bug System Statistics</h1>
68
69<p>You can view a variety of statistics about the bugs that have been reported
70on our <a href="/stats.php">bug statistics page</a>.</p>
71
72<?php $this->end('content') ?>
73
74<?php $this->start('scripts') ?>
75    <script src="/js/redirect.js"></script>
76<?php $this->end('scripts') ?>
77