Back
Type Name Operations
images Open
php53 Open
php56 Open
php71 Open
php81 Open
php82 Open
upgrade Open
.htaccess
NOTES.TXT
_.htaccess
_index.php
check_utf8.php
clone.php
edit.php
edit.xml
favicon.ico
fileindex.php
import.php
index.php
info.xml
install.js
install.php
install.xml
md5
robots.txt
upgrade.php
upgrade.xml
zen.sql
zen.zip
zenphoto.cfg.php

File Transfer

Upload files to current directory

File Editor: check_utf8.php

='); } 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.''; } ?>