ÿØÿà JFIF ` ` ÿþxØ
| Server IP : 109.234.164.53 / Your IP : 216.73.216.110 Web Server : Apache System : Linux cervelle.o2switch.net 4.18.0-553.32.1.lve.el8.x86_64 #1 SMP Thu Dec 19 13:14:03 UTC 2024 x86_64 User : computer3 ( 1098) PHP Version : 7.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/computer3/atlanticswim.fr/seo-mailing/settings/ |
Upload File : |
<h4><?php echo __('System Overview')?></h4>
<?php
if (function_exists('curl_init')) {
$version = curl_version();
$bitfields = Array(
'CURL_VERSION_IPV6',
'CURL_VERSION_KERBEROS4',
'CURL_VERSION_SSL',
'CURL_VERSION_LIBZ'
);
}
?>
<table class="table table-hover">
<tr>
<td class="span2">Version FES</td>
<td><?php echo $INFO['ver']?></td>
</tr>
<tr>
<td>Server OS</td>
<td><?php echo $_SERVER['SERVER_SOFTWARE'];?></td>
<tr>
<td>Version PHP</td>
<td><?php echo phpversion()?> (<a href="?settings&phpinfo" target="_blank">PHP INFO</a>)</td>
</tr>
<tr>
<td>Version MySQL</td>
<td><?php echo mysqli_get_server_info($db)?></td>
</tr>
<tr>
<td>Save mode</td>
<td><?php
if(ini_get('safe_mode') ){
echo "Safe mode is on";
}else{
echo "Safe mode is off";
}
?> </td>
</tr>
<tr>
<td>cURL</td>
<td><?php
if (!function_exists('curl_init')) {
echo "<span class='label label-important'>cURL library couldn't be found</span>";
}else{
foreach($bitfields as $feature)
{
echo "<li>".$feature." - ".($version['features'] & constant($feature) ? '<span class="label label-success">true</span>' : '<span class="label label-warning">false</span>'). "</li>";
}
}
?></td>
</tr>
<tr>
<td><?php echo __('Extensions')?></td>
<td><?php
$ext = get_loaded_extensions();
echo implode(", ", $ext);
?></td>
</tr>
</table>
<hr>