forked from php/web-php
-
Notifications
You must be signed in to change notification settings - Fork 1
/
thanks.php
149 lines (120 loc) · 3.87 KB
/
thanks.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<?php
$_SERVER['BASE_PAGE'] = 'thanks.php';
include_once __DIR__ . '/include/prepend.inc';
include_once __DIR__ . '/include/historical_mirrors.inc';
site_header("Thanks", array("current" => "community"));
?>
<h1>Thanks</h1>
<ul>
<li>
<a href="http://www.easydns.com/?V=698570efeb62a6e2">easyDNS</a>
provides DNS services for the PHP domains.
</li>
<li>
<a href="https://www.myrasecurity.com/ddos-protection/">DDoS protection by Myra Security</a>, along with hosting
www.php.net and git.php.net for us.
</li>
<li>
<a href="http://www.streamservice.nl">Stream Service</a>
provides servers and bandwidth for svn.php.net, gtk.php.net, people.php.net
and europe.rsync.php.net.
</li>
<li>
<a href="http://www.directi.com/">Directi</a> provides
IP address to country lookup information.
</li>
<li>
<a href="https://www.digitalocean.com/">DigitalOcean</a> provides
VMs for a number of PHP services.
</li>
<li>
<a href="http://promote.pair.com/direct.pl?php.net">pair Networks</a>
provides the servers and bandwidth for PEAR, PECL and mailing list services.
</li>
<li>
<a href="http://www.rackspace.com/">Rackspace</a> provides
the server and bandwidth for various php.net services.
</li>
<li>
<a href="http://www.servercentral.net/">Server Central</a> provides
a box and connection which runs various services and sites for php.net
</li>
<li>
<a href="http://www.spry.com/">Spry VPS Hosting</a> provides a server and
bandwidth for various php.net services.
</li>
<li>
<a href="http://www.osuosl.org/">OSU Open Source Lab</a> provides a server and
bandwidth for various php.net services.
</li>
<li>
<a href="http://www.nexcess.net/">NEXCESS.NET</a> provides a server and bandwidth
for various php.net services.
</li>
<li>
<a href="http://www.eukhost.com/">EUKhost</a> provides a server and bandwidth
for various php.net services.
</li>
<li>
<a href="https://duocast.nl/">Duocast</a> provides the
servers and bandwidth used for buildbot testing and various windows based servers.
</li>
<li>
<a href="http://www.redpill-linpro.com">Redpill Linpro</a> provides managed servers and bandwidth for various php.net services.
</li>
<li>
<a href="http://krystal.co.uk">Krystal.co.uk</a> provides a server and bandwidth
for the ci.qa.php.net build and quality assurance infrastructure.
</li>
<li>
<a href="http://servergrove.com/">ServerGrove</a> provides managed servers and bandwidth for various php.net services.
</li>
<li>
<a href="https://www.bauer-kirch.de/">Bauer + Kirch GmbH</a> provides us with SSL certificates and
a server and bandwidth for the php.net monitoring infrastructure.
</li>
<li>
<a href="https://www.appveyor.com/">AppVeyor</a> provides continuous integration for Windows builds of PHP.
</li>
<li>
<a href="https://www.travis-ci.org/">Travis CI</a> provides continuous integration for builds of PHP.
</li>
</ul>
<h1>Thanks Emeritus</h1>
<p>
Special 'legacy' thanks go to the people and companies who have helped
us in our past.
</p>
<ul>
<li>
<a href="http://www.yahoo.com/">Yahoo! Inc.</a> provided us with many many
terabytes of bandwidth and hosting for www.php.net, and svn.php.net and git.php.net
for many years.
</li>
<li>
<a href="http://www.synacor.com">Synacor</a> provided us with many
terabytes of bandwidth and hosting for www.php.net and others for
many years.
</li>
<li>
<a href="http://www.vasoftware.com">VA Software Corp.</a> helped us
by donating a server and resources to enable us to build manuals
and distribute our content via rsync.
</li>
</ul>
<p>
And special thanks to all the companies who donated server space and
bandwidth to host our historical international array of mirror sites.
</p>
<ul>
<?php
$last_country = '';
foreach ($historical_mirrors as $m) {
?>
<li><?php echo $COUNTRIES[$m[0]]; ?>: <a href='<?php echo $m[3]; ?>'><?php echo $m[2]; ?></a></li>
<?php
}
?>
</ul>
<p>PHP.net is very grateful for all their support.</p>
<?php site_footer(); ?>