Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found
in /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php on line 107
Warning: Cannot modify header information - headers already sent by (output started at /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php:1) in /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php on line 234
Warning: Cannot modify header information - headers already sent by (output started at /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php:1) in /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php on line 235
Warning: Cannot modify header information - headers already sent by (output started at /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php:1) in /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php on line 236
Warning: Cannot modify header information - headers already sent by (output started at /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php:1) in /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php on line 237
Warning: Cannot modify header information - headers already sent by (output started at /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php:1) in /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php on line 238
Warning: Cannot modify header information - headers already sent by (output started at /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php:1) in /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php on line 239
=');
} else {
return version_compare($client_version, '5.5.3', '>=');
}
case 'utf8mb4_520':
return version_compare($db_version, '5.6', '>=');
case 'general':
return (hasUtf8mb4Support('utf8mb4') || hasUtf8mb4Support('utf8mb4_520'));
}
}
return false;
}
function getVersion() {
$software = getVersionComplete();
if ($software) {
if (isMariaDB()) {
preg_match("/\d+(\.\d+){2,}-MariaDB/", $software, $matches);
if ($matches) {
return str_replace('-MariaDB', '', $matches[0]);
}
return $software; // just in case…
} else {
return $software;
}
}
return '0.0.0';
}
function getVersionComplete() {
global $connection;
$connection = mysqli_connect("[[softdbhost]]","[[softdbuser]]","[[softdbpass]]","[[softdb]]");
if ($connection) {
$query = mysqli_fetch_array(mysqli_query($connection, "SELECT version()"));
if ($query) {
return $query['version()'];
}
}
return null;
}
function isMariaDB() {
$db_version = getVersionComplete();
if ($db_version && stristr($db_version, 'mariadb')) { // version includes note if mariadb
return true;
}
return false;
}
$charset_value = getCollationSetClause();
if(!empty($charset_value)){
echo ''.$charset_value.'';
}
?>