This repository has been archived by the owner on Jul 13, 2021. It is now read-only.
forked from phpversions/phpversions.info
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshared-hosting.html
44 lines (43 loc) · 2.05 KB
/
shared-hosting.html
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
---
layout: default
---
<article class="hosts">
<section>
<div class="host-description">
<h2>Shared Hosting</h2>
<p>Shared hosting is the most common type of hosting. It means that multiple websites owned by various people are all jammed onto the same server. These are often the slowest to update PHP versions because of the potential for breaking many sites. Still, manual upgrade options should be offered to move from one PHP version to another, and automatic updates at the patch level (0.0.X) should be provided.</p>
<hr>
</div>
<table class="tables tables__scrollbar" data-sortable>
<thead>
<tr>
<th data-sortable-type="alpha">Host</th>
<th data-sortable-type="alpha">Last Scanned</th>
<th>7.1</th>
<th>7.0</th>
<th>5.6</th>
<th>5.5</th>
<th>5.4</th>
<th>Default</th>
</tr>
</thead>
<tbody>
{% assign hosts = (site.data.hosts | filter_by_type: 'shared' | sort: 'name') %}
{% for host in hosts %}
<tr>
<td class="host-name"><a href="{{ host.url }}">{{ host.name }}</a></td>
<td class="host-info" data-last-scanned="{{ host.last_scanned_at }}" data-value="{{ host.last_scanned_at }}">
<i class="fa fa-times"></i>
</td>
<td class="host-info version">{{ host.versions[71] | format_version }}</td>
<td class="host-info version">{{ host.versions[70] | format_version }}</td>
<td class="host-info version">{{ host.versions[56] | format_version }}</td>
<td class="host-info version">{{ host.versions[55] | format_version }}</td>
<td class="host-info version">{{ host.versions[54] | format_version }}</td>
<td class="host-info version">{% if host.default %}{{ host.versions[host.default] | format_version }}{% else %}<em>???</em>{% endif %}</td>
</tr>
{% endfor %}
</tbody>
</table>
</section>
</article>