2015-03-08 18:02:59 +01:00
|
|
|
<?php
|
2015-07-15 02:07:07 +02:00
|
|
|
|
|
|
|
/*
|
2016-01-21 02:46:13 +01:00
|
|
|
* Bludit
|
2016-02-14 17:45:33 +01:00
|
|
|
* https://www.bludit.com
|
2015-07-15 02:07:07 +02:00
|
|
|
* Author Diego Najar
|
|
|
|
* Bludit is opensource software licensed under the MIT license.
|
|
|
|
*/
|
2015-08-17 02:24:22 +02:00
|
|
|
|
2015-11-09 00:26:19 +01:00
|
|
|
// Check PHP version
|
2017-09-05 23:46:45 +02:00
|
|
|
if (version_compare(phpversion(), '5.3', '<')) {
|
2018-06-25 23:17:43 +02:00
|
|
|
$errorText = 'Current PHP version '.phpversion().', you need > 5.3.';
|
|
|
|
error_log('[ERROR] '.$errorText, 0);
|
|
|
|
exit($errorText);
|
2015-11-09 00:26:19 +01:00
|
|
|
}
|
|
|
|
|
2017-01-10 17:43:38 +01:00
|
|
|
// Check PHP modules
|
2018-06-25 23:17:43 +02:00
|
|
|
$modulesRequired = array('mbstring', 'json', 'gd', 'dom');
|
|
|
|
$modulesRequiredExit = false;
|
|
|
|
$modulesRequiredMissing = '';
|
|
|
|
foreach ($modulesRequired as $module) {
|
|
|
|
if (!extension_loaded($module)) {
|
|
|
|
$errorText = 'PHP module <b>'.$module.'</b> is not installed.';
|
|
|
|
error_log('[ERROR] '.$errorText, 0);
|
|
|
|
|
|
|
|
$modulesRequiredExit = true;
|
|
|
|
$modulesRequiredMissing .= $errorText.PHP_EOL;
|
|
|
|
}
|
2017-01-10 17:43:38 +01:00
|
|
|
}
|
2018-06-25 23:17:43 +02:00
|
|
|
if ($modulesRequiredExit) {
|
|
|
|
echo 'PHP modules missing:';
|
|
|
|
echo $modulesRequiredMissing;
|
|
|
|
echo '';
|
|
|
|
echo '<a href="https://docs.bludit.com/en/getting-started/requirements">Please read Bludit requirements</a>.';
|
|
|
|
exit(0);
|
2017-01-10 17:43:38 +01:00
|
|
|
}
|
|
|
|
|
2015-05-05 03:00:01 +02:00
|
|
|
// Security constant
|
2015-03-08 18:02:59 +01:00
|
|
|
define('BLUDIT', true);
|
2015-08-17 02:24:22 +02:00
|
|
|
|
2015-06-22 00:01:07 +02:00
|
|
|
// Directory separator
|
|
|
|
define('DS', DIRECTORY_SEPARATOR);
|
|
|
|
|
2015-08-17 02:24:22 +02:00
|
|
|
// PHP paths
|
2015-08-04 05:10:12 +02:00
|
|
|
define('PATH_ROOT', __DIR__.DS);
|
2016-01-21 01:29:01 +01:00
|
|
|
define('PATH_CONTENT', PATH_ROOT.'bl-content'.DS);
|
|
|
|
define('PATH_KERNEL', PATH_ROOT.'bl-kernel'.DS);
|
|
|
|
define('PATH_LANGUAGES', PATH_ROOT.'bl-languages'.DS);
|
2015-08-04 05:10:12 +02:00
|
|
|
define('PATH_UPLOADS', PATH_CONTENT.'uploads'.DS);
|
2016-05-26 23:48:41 +02:00
|
|
|
define('PATH_TMP', PATH_CONTENT.'tmp'.DS);
|
2015-08-04 05:10:12 +02:00
|
|
|
define('PATH_PAGES', PATH_CONTENT.'pages'.DS);
|
|
|
|
define('PATH_DATABASES', PATH_CONTENT.'databases'.DS);
|
|
|
|
define('PATH_PLUGINS_DATABASES',PATH_CONTENT.'databases'.DS.'plugins'.DS);
|
2016-01-21 01:29:01 +01:00
|
|
|
define('PATH_UPLOADS_PROFILES', PATH_UPLOADS.'profiles'.DS);
|
|
|
|
define('PATH_UPLOADS_THUMBNAILS',PATH_UPLOADS.'thumbnails'.DS);
|
2015-08-04 05:10:12 +02:00
|
|
|
define('PATH_HELPERS', PATH_KERNEL.'helpers'.DS);
|
|
|
|
define('PATH_ABSTRACT', PATH_KERNEL.'abstract'.DS);
|
2015-05-05 03:00:01 +02:00
|
|
|
|
2017-09-05 23:46:45 +02:00
|
|
|
// Protecting against Symlink attacks
|
2016-02-20 17:16:31 +01:00
|
|
|
define('CHECK_SYMBOLIC_LINKS', TRUE);
|
|
|
|
|
2017-09-05 23:46:45 +02:00
|
|
|
// Filename for pages
|
2017-07-15 15:47:37 +02:00
|
|
|
define('FILENAME', 'index.txt');
|
2016-07-17 01:19:10 +02:00
|
|
|
|
2016-01-17 22:11:20 +01:00
|
|
|
// Domain and protocol
|
|
|
|
define('DOMAIN', $_SERVER['HTTP_HOST']);
|
|
|
|
|
2017-09-05 23:46:45 +02:00
|
|
|
if (!empty($_SERVER['HTTPS'])) {
|
2016-01-17 22:11:20 +01:00
|
|
|
define('PROTOCOL', 'https://');
|
2017-09-05 23:46:45 +02:00
|
|
|
} else {
|
2016-01-17 22:11:20 +01:00
|
|
|
define('PROTOCOL', 'http://');
|
|
|
|
}
|
|
|
|
|
2016-01-21 01:29:01 +01:00
|
|
|
// Base URL
|
2017-09-05 23:46:45 +02:00
|
|
|
// Change the base URL or leave it empty if you want to Bludit try to detect the base URL.
|
2016-01-17 22:11:20 +01:00
|
|
|
$base = '';
|
|
|
|
|
2017-09-05 23:46:45 +02:00
|
|
|
if (!empty($_SERVER['DOCUMENT_ROOT']) && !empty($_SERVER['SCRIPT_NAME']) && empty($base)) {
|
2016-01-17 22:11:20 +01:00
|
|
|
$base = str_replace($_SERVER['DOCUMENT_ROOT'], '', $_SERVER['SCRIPT_NAME']);
|
|
|
|
$base = dirname($base);
|
2017-09-05 23:46:45 +02:00
|
|
|
} elseif (empty($base)) {
|
2016-01-17 22:11:20 +01:00
|
|
|
$base = empty( $_SERVER['SCRIPT_NAME'] ) ? $_SERVER['PHP_SELF'] : $_SERVER['SCRIPT_NAME'];
|
|
|
|
$base = dirname($base);
|
|
|
|
}
|
2015-11-16 05:20:58 +01:00
|
|
|
|
2017-09-05 23:46:45 +02:00
|
|
|
if (strpos($_SERVER['REQUEST_URI'], $base)!==0) {
|
|
|
|
$base = '/';
|
|
|
|
} elseif ($base!=DS) {
|
2016-01-17 22:11:20 +01:00
|
|
|
$base = trim($base, '/');
|
|
|
|
$base = '/'.$base.'/';
|
2017-09-05 23:46:45 +02:00
|
|
|
} else {
|
2015-11-16 05:20:58 +01:00
|
|
|
// Workaround for Windows Web Servers
|
|
|
|
$base = '/';
|
|
|
|
}
|
|
|
|
|
2015-05-15 00:07:45 +02:00
|
|
|
define('HTML_PATH_ROOT', $base);
|
2015-05-05 03:00:01 +02:00
|
|
|
|
2015-08-17 02:24:22 +02:00
|
|
|
// Log separator
|
|
|
|
define('LOG_SEP', ' | ');
|
|
|
|
|
2015-08-04 05:10:12 +02:00
|
|
|
// JSON
|
2017-09-05 23:46:45 +02:00
|
|
|
if (!defined('JSON_PRETTY_PRINT')) {
|
2015-05-15 00:07:45 +02:00
|
|
|
define('JSON_PRETTY_PRINT', 128);
|
|
|
|
}
|
2015-05-05 03:00:01 +02:00
|
|
|
|
2015-08-26 05:42:32 +02:00
|
|
|
// Database format date
|
2016-01-08 00:43:09 +01:00
|
|
|
define('DB_DATE_FORMAT', 'Y-m-d H:i:s');
|
2015-08-26 05:42:32 +02:00
|
|
|
|
2015-08-17 02:24:22 +02:00
|
|
|
// Charset, default UTF-8.
|
2015-08-07 04:13:55 +02:00
|
|
|
define('CHARSET', 'UTF-8');
|
|
|
|
|
2017-09-05 23:46:45 +02:00
|
|
|
// Default language file
|
2017-09-04 23:09:45 +02:00
|
|
|
define('DEFAULT_LANGUAGE_FILE', 'en.json');
|
|
|
|
|
2017-09-05 23:46:45 +02:00
|
|
|
// Set internal character encoding
|
2016-07-26 01:40:51 +02:00
|
|
|
mb_internal_encoding(CHARSET);
|
2015-08-17 02:24:22 +02:00
|
|
|
|
2017-09-05 23:46:45 +02:00
|
|
|
// Set HTTP output character encoding
|
2016-07-26 01:40:51 +02:00
|
|
|
mb_http_output(CHARSET);
|
2015-08-07 04:13:55 +02:00
|
|
|
|
2018-06-25 23:17:43 +02:00
|
|
|
// Directory permissions
|
|
|
|
define('DIR_PERMISSIONS', 0755);
|
2016-01-21 01:29:01 +01:00
|
|
|
|
2018-06-25 23:17:43 +02:00
|
|
|
// --- PHP Classes ---
|
2016-01-21 01:29:01 +01:00
|
|
|
include(PATH_ABSTRACT.'dbjson.class.php');
|
2015-08-04 05:10:12 +02:00
|
|
|
include(PATH_HELPERS.'sanitize.class.php');
|
|
|
|
include(PATH_HELPERS.'valid.class.php');
|
2015-08-07 04:13:55 +02:00
|
|
|
include(PATH_HELPERS.'text.class.php');
|
2015-08-17 02:24:22 +02:00
|
|
|
include(PATH_HELPERS.'log.class.php');
|
2015-08-26 05:42:32 +02:00
|
|
|
include(PATH_HELPERS.'date.class.php');
|
2016-01-21 01:29:01 +01:00
|
|
|
include(PATH_KERNEL.'dblanguage.class.php');
|
2015-08-04 05:10:12 +02:00
|
|
|
|
2016-02-10 02:10:12 +01:00
|
|
|
// --- LANGUAGE and LOCALE ---
|
2017-09-05 23:46:45 +02:00
|
|
|
// Try to detect the language from browser or headers
|
|
|
|
$languageFromHTTP = 'en';
|
2017-09-04 23:09:45 +02:00
|
|
|
$localeFromHTTP = 'en_US';
|
|
|
|
|
|
|
|
if (isset($_GET['language'])) {
|
|
|
|
$languageFromHTTP = Sanitize::html($_GET['language']);
|
|
|
|
} else {
|
|
|
|
// Try to detect the language browser
|
|
|
|
$languageFromHTTP = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);
|
|
|
|
|
2016-02-10 02:10:12 +01:00
|
|
|
// Try to detect the locale
|
2017-09-04 23:09:45 +02:00
|
|
|
if (function_exists('locale_accept_from_http')) {
|
2016-02-10 02:10:12 +01:00
|
|
|
$localeFromHTTP = locale_accept_from_http($_SERVER['HTTP_ACCEPT_LANGUAGE']);
|
|
|
|
}
|
2016-01-17 01:11:58 +01:00
|
|
|
}
|
|
|
|
|
2017-09-05 23:46:45 +02:00
|
|
|
$finalLanguage = 'en';
|
|
|
|
$languageFiles = getLanguageList();
|
|
|
|
foreach ($languageFiles as $fname=>$native) {
|
|
|
|
if ( ($languageFromHTTP==$fname) || ($localeFromHTTP==$fname) ) {
|
|
|
|
$finalLanguage = $fname;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$Language = new dbLanguage($finalLanguage);
|
2015-08-16 12:34:53 +02:00
|
|
|
|
2016-02-10 02:10:12 +01:00
|
|
|
// Set locale
|
2015-10-26 02:11:46 +01:00
|
|
|
setlocale(LC_ALL, $localeFromHTTP);
|
|
|
|
|
|
|
|
// --- TIMEZONE ---
|
|
|
|
|
|
|
|
// Check if timezone is defined in php.ini
|
2015-10-24 01:23:33 +02:00
|
|
|
$iniDate = ini_get('date.timezone');
|
2017-09-05 23:46:45 +02:00
|
|
|
if (empty($iniDate)) {
|
2016-02-10 02:10:12 +01:00
|
|
|
// Timezone not defined in php.ini, then set UTC as default.
|
2015-10-24 01:23:33 +02:00
|
|
|
date_default_timezone_set('UTC');
|
|
|
|
}
|
|
|
|
|
2015-05-15 00:07:45 +02:00
|
|
|
// ============================================================================
|
|
|
|
// FUNCTIONS
|
|
|
|
// ============================================================================
|
2015-05-05 03:00:01 +02:00
|
|
|
|
2015-10-26 02:11:46 +01:00
|
|
|
// Returns an array with all languages
|
2017-09-06 20:11:28 +02:00
|
|
|
function getLanguageList() {
|
2015-08-04 05:10:12 +02:00
|
|
|
$files = glob(PATH_LANGUAGES.'*.json');
|
|
|
|
$tmp = array();
|
2017-09-06 20:11:28 +02:00
|
|
|
foreach ($files as $file) {
|
2015-08-04 05:10:12 +02:00
|
|
|
$t = new dbJSON($file, false);
|
|
|
|
$native = $t->db['language-data']['native'];
|
|
|
|
$locale = basename($file, '.json');
|
|
|
|
$tmp[$locale] = $native;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $tmp;
|
|
|
|
}
|
|
|
|
|
2017-05-17 18:48:51 +02:00
|
|
|
// Check if Bludit is installed
|
2015-08-04 05:10:12 +02:00
|
|
|
function alreadyInstalled() {
|
2017-09-05 23:46:45 +02:00
|
|
|
return file_exists(PATH_DATABASES.'site.php');
|
2015-05-05 03:00:01 +02:00
|
|
|
}
|
|
|
|
|
2017-09-05 23:46:45 +02:00
|
|
|
// Check write permissions and .htaccess file
|
2015-05-15 00:07:45 +02:00
|
|
|
function checkSystem()
|
2015-05-05 03:00:01 +02:00
|
|
|
{
|
2018-06-25 23:17:43 +02:00
|
|
|
$output = array();
|
2015-08-04 05:10:12 +02:00
|
|
|
|
2018-03-04 21:43:30 +01:00
|
|
|
// Try to create .htaccess
|
2018-03-02 15:10:48 +01:00
|
|
|
$htaccessContent = 'AddDefaultCharset UTF-8
|
|
|
|
|
|
|
|
<IfModule mod_rewrite.c>
|
|
|
|
|
|
|
|
# Enable rewrite rules
|
|
|
|
RewriteEngine on
|
|
|
|
|
2018-03-04 21:43:30 +01:00
|
|
|
# Base directory
|
|
|
|
RewriteBase '.HTML_PATH_ROOT.'
|
|
|
|
|
2018-03-02 15:10:48 +01:00
|
|
|
# Deny direct access to .txt files
|
|
|
|
RewriteRule ^bl-content/(.*)\.txt$ - [R=404,L]
|
|
|
|
|
|
|
|
# All URL process by index.php
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
|
|
RewriteRule ^(.*) index.php [PT,L]
|
|
|
|
|
|
|
|
</IfModule>';
|
|
|
|
|
2018-03-04 21:43:30 +01:00
|
|
|
if (!file_put_contents(PATH_ROOT.'.htaccess', $htaccessContent)) {
|
|
|
|
if (!empty($_SERVER['SERVER_SOFTWARE'])) {
|
|
|
|
$webserver = Text::lowercase($_SERVER['SERVER_SOFTWARE']);
|
|
|
|
if (Text::stringContains($webserver, 'apache') || Text::stringContains($webserver, 'litespeed')) {
|
2018-03-04 21:51:12 +01:00
|
|
|
$errorText = 'Missing file, upload the file .htaccess';
|
2018-06-25 23:17:43 +02:00
|
|
|
error_log('[ERROR] '.$errorText, 0);
|
|
|
|
array_push($output, $errorText);
|
2018-03-02 15:10:48 +01:00
|
|
|
}
|
2016-08-31 02:57:24 +02:00
|
|
|
}
|
2015-08-04 05:10:12 +02:00
|
|
|
}
|
|
|
|
|
2018-03-02 16:03:00 +01:00
|
|
|
// Check mod_rewrite module
|
|
|
|
if (function_exists('apache_get_modules') ) {
|
|
|
|
if (!in_array('mod_rewrite', apache_get_modules())) {
|
|
|
|
$errorText = 'Module mod_rewrite is not installed or loaded.';
|
2018-06-25 23:17:43 +02:00
|
|
|
error_log('[ERROR] '.$errorText, 0);
|
|
|
|
array_push($output, $errorText);
|
2016-08-31 02:57:24 +02:00
|
|
|
}
|
2015-08-04 05:10:12 +02:00
|
|
|
}
|
|
|
|
|
2016-01-17 01:11:58 +01:00
|
|
|
// Try to create the directory content
|
2018-06-25 23:17:43 +02:00
|
|
|
@mkdir(PATH_CONTENT, DIR_PERMISSIONS, true);
|
2016-01-17 01:11:58 +01:00
|
|
|
|
|
|
|
// Check if the directory content is writeable.
|
2017-09-05 23:46:45 +02:00
|
|
|
if (!is_writable(PATH_CONTENT)) {
|
2018-03-04 21:51:12 +01:00
|
|
|
$errorText = 'Writing test failure, check directory "bl-content" permissions.';
|
2018-06-25 23:17:43 +02:00
|
|
|
error_log('[ERROR] '.$errorText, 0);
|
|
|
|
array_push($output, $errorText);
|
2015-08-04 05:10:12 +02:00
|
|
|
}
|
|
|
|
|
2018-06-25 23:17:43 +02:00
|
|
|
return $output;
|
2015-05-05 03:00:01 +02:00
|
|
|
}
|
|
|
|
|
2018-06-25 23:17:43 +02:00
|
|
|
// Install Bludit
|
|
|
|
function install($adminPassword, $timezone)
|
2015-05-15 00:07:45 +02:00
|
|
|
{
|
2015-08-17 02:24:22 +02:00
|
|
|
global $Language;
|
2015-08-07 04:13:55 +02:00
|
|
|
|
2018-06-25 23:17:43 +02:00
|
|
|
if (!date_default_timezone_set($timezone)) {
|
2016-02-10 02:10:12 +01:00
|
|
|
date_default_timezone_set('UTC');
|
|
|
|
}
|
2015-10-24 22:43:50 +02:00
|
|
|
|
|
|
|
$currentDate = Date::current(DB_DATE_FORMAT);
|
|
|
|
|
2015-08-04 05:10:12 +02:00
|
|
|
// ============================================================================
|
|
|
|
// Create directories
|
|
|
|
// ============================================================================
|
|
|
|
|
2018-06-25 23:17:43 +02:00
|
|
|
// INITIAL PAGES
|
|
|
|
if (!mkdir(PATH_PAGES.$Language->get('example-page-1-slug'), DIR_PERMISSIONS, true)) {
|
2018-02-25 17:25:10 +01:00
|
|
|
$errorText = 'Error when trying to created the directory=>'.PATH_PAGES.$Language->get('example-page-1-slug');
|
2018-06-25 23:17:43 +02:00
|
|
|
error_log('[ERROR] '.$errorText, 0);
|
2015-08-04 05:10:12 +02:00
|
|
|
}
|
2018-06-25 23:17:43 +02:00
|
|
|
if (!mkdir(PATH_PAGES.$Language->get('example-page-2-slug'), DIR_PERMISSIONS, true)) {
|
2018-02-25 17:25:10 +01:00
|
|
|
$errorText = 'Error when trying to created the directory=>'.PATH_PAGES.$Language->get('example-page-2-slug');
|
2018-06-25 23:17:43 +02:00
|
|
|
error_log('[ERROR] '.$errorText, 0);
|
2018-02-25 17:25:10 +01:00
|
|
|
}
|
2018-06-25 23:17:43 +02:00
|
|
|
if (!mkdir(PATH_PAGES.$Language->get('example-page-3-slug'), DIR_PERMISSIONS, true)) {
|
2018-02-25 17:25:10 +01:00
|
|
|
$errorText = 'Error when trying to created the directory=>'.PATH_PAGES.$Language->get('example-page-3-slug');
|
2018-06-25 23:17:43 +02:00
|
|
|
error_log('[ERROR] '.$errorText, 0);
|
2018-02-25 17:25:10 +01:00
|
|
|
}
|
2018-06-25 23:17:43 +02:00
|
|
|
if (!mkdir(PATH_PAGES.$Language->get('example-page-4-slug'), DIR_PERMISSIONS, true)) {
|
2018-02-25 17:25:10 +01:00
|
|
|
$errorText = 'Error when trying to created the directory=>'.PATH_PAGES.$Language->get('example-page-4-slug');
|
2018-06-25 23:17:43 +02:00
|
|
|
error_log('[ERROR] '.$errorText, 0);
|
2015-08-04 05:10:12 +02:00
|
|
|
}
|
|
|
|
|
2017-09-05 23:46:45 +02:00
|
|
|
// PLUGINS
|
2018-06-25 23:17:43 +02:00
|
|
|
if (!mkdir(PATH_PLUGINS_DATABASES.'quill', DIR_PERMISSIONS, true)) {
|
|
|
|
$errorText = 'Error when trying to created the directory=>'.PATH_PLUGINS_DATABASES.'quill';
|
|
|
|
error_log('[ERROR] '.$errorText, 0);
|
2015-08-31 03:18:06 +02:00
|
|
|
}
|
|
|
|
|
2018-06-25 23:17:43 +02:00
|
|
|
if (!mkdir(PATH_PLUGINS_DATABASES.'tags', DIR_PERMISSIONS, true)) {
|
2015-08-31 03:18:06 +02:00
|
|
|
$errorText = 'Error when trying to created the directory=>'.PATH_PLUGINS_DATABASES.'tags';
|
2018-06-25 23:17:43 +02:00
|
|
|
error_log('[ERROR] '.$errorText, 0);
|
2015-08-29 07:02:09 +02:00
|
|
|
}
|
|
|
|
|
2018-06-25 23:17:43 +02:00
|
|
|
if (!mkdir(PATH_PLUGINS_DATABASES.'about', DIR_PERMISSIONS, true)) {
|
2015-11-16 05:20:58 +01:00
|
|
|
$errorText = 'Error when trying to created the directory=>'.PATH_PLUGINS_DATABASES.'about';
|
2018-06-25 23:17:43 +02:00
|
|
|
error_log('[ERROR] '.$errorText, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!mkdir(PATH_PLUGINS_DATABASES.'simple-stats', DIR_PERMISSIONS, true)) {
|
|
|
|
$errorText = 'Error when trying to created the directory=>'.PATH_PLUGINS_DATABASES.'simple-stats';
|
|
|
|
error_log('[ERROR] '.$errorText, 0);
|
2015-11-16 05:20:58 +01:00
|
|
|
}
|
|
|
|
|
2018-06-25 23:17:43 +02:00
|
|
|
// UPLOADS DIRECTORIES
|
|
|
|
if (!mkdir(PATH_UPLOADS_PROFILES, DIR_PERMISSIONS, true)) {
|
2015-11-16 05:20:58 +01:00
|
|
|
$errorText = 'Error when trying to created the directory=>'.PATH_UPLOADS_PROFILES;
|
2018-06-25 23:17:43 +02:00
|
|
|
error_log('[ERROR] '.$errorText, 0);
|
2015-08-04 05:10:12 +02:00
|
|
|
}
|
|
|
|
|
2018-06-25 23:17:43 +02:00
|
|
|
if (!mkdir(PATH_UPLOADS_THUMBNAILS, DIR_PERMISSIONS, true)) {
|
2017-05-17 18:48:51 +02:00
|
|
|
$errorText = 'Error when trying to created the directory=>'.PATH_UPLOADS_THUMBNAILS;
|
2018-06-25 23:17:43 +02:00
|
|
|
error_log('[ERROR] '.$errorText, 0);
|
2016-05-26 23:48:41 +02:00
|
|
|
}
|
|
|
|
|
2018-06-25 23:17:43 +02:00
|
|
|
if (!mkdir(PATH_TMP, DIR_PERMISSIONS, true)) {
|
2017-05-17 18:48:51 +02:00
|
|
|
$errorText = 'Error when trying to created the directory=>'.PATH_TMP;
|
2018-06-25 23:17:43 +02:00
|
|
|
error_log('[ERROR] '.$errorText, 0);
|
2016-01-03 22:04:54 +01:00
|
|
|
}
|
|
|
|
|
2015-08-04 05:10:12 +02:00
|
|
|
// ============================================================================
|
|
|
|
// Create files
|
|
|
|
// ============================================================================
|
|
|
|
|
|
|
|
$dataHead = "<?php defined('BLUDIT') or die('Bludit CMS.'); ?>".PHP_EOL;
|
|
|
|
|
|
|
|
// File pages.php
|
|
|
|
$data = array(
|
2018-02-25 17:25:10 +01:00
|
|
|
$Language->get('example-page-1-slug')=>array(
|
|
|
|
'description'=>'',
|
2017-05-17 18:48:51 +02:00
|
|
|
'username'=>'admin',
|
|
|
|
'tags'=>array(),
|
2018-02-25 17:25:10 +01:00
|
|
|
'status'=>'published',
|
2017-10-07 16:58:24 +02:00
|
|
|
'type'=>'page',
|
2017-05-17 18:48:51 +02:00
|
|
|
'date'=>$currentDate,
|
|
|
|
'dateModified'=>'',
|
2017-05-30 20:28:55 +02:00
|
|
|
'allowComments'=>true,
|
2018-02-25 17:25:10 +01:00
|
|
|
'position'=>1,
|
2017-05-17 18:48:51 +02:00
|
|
|
'coverImage'=>'',
|
|
|
|
'md5file'=>'',
|
|
|
|
'category'=>'',
|
2017-10-07 16:58:24 +02:00
|
|
|
'uuid'=>md5(uniqid()),
|
|
|
|
'parent'=>'',
|
2018-02-25 17:25:10 +01:00
|
|
|
'slug'=>$Language->get('example-page-1-slug')
|
2017-05-17 18:48:51 +02:00
|
|
|
),
|
2018-02-25 17:25:10 +01:00
|
|
|
$Language->get('example-page-2-slug')=>array(
|
|
|
|
'description'=>'',
|
|
|
|
'username'=>'admin',
|
|
|
|
'tags'=>array(),
|
|
|
|
'status'=>'published',
|
|
|
|
'type'=>'page',
|
|
|
|
'date'=>$currentDate,
|
|
|
|
'dateModified'=>'',
|
|
|
|
'allowComments'=>true,
|
2018-06-25 23:17:43 +02:00
|
|
|
'position'=>2,
|
2018-02-25 17:25:10 +01:00
|
|
|
'coverImage'=>'',
|
|
|
|
'md5file'=>'',
|
|
|
|
'category'=>'',
|
|
|
|
'uuid'=>md5(uniqid()),
|
|
|
|
'parent'=>'',
|
|
|
|
'slug'=>$Language->get('example-page-2-slug')
|
|
|
|
),
|
|
|
|
$Language->get('example-page-3-slug')=>array(
|
|
|
|
'description'=>'',
|
2017-05-17 18:48:51 +02:00
|
|
|
'username'=>'admin',
|
2018-02-25 17:25:10 +01:00
|
|
|
'tags'=>array(),
|
2017-05-17 18:48:51 +02:00
|
|
|
'status'=>'published',
|
2018-02-25 17:25:10 +01:00
|
|
|
'type'=>'page',
|
2017-05-17 18:48:51 +02:00
|
|
|
'date'=>$currentDate,
|
|
|
|
'dateModified'=>'',
|
2017-05-30 20:28:55 +02:00
|
|
|
'allowComments'=>true,
|
2018-06-25 23:17:43 +02:00
|
|
|
'position'=>3,
|
2017-05-17 18:48:51 +02:00
|
|
|
'coverImage'=>'',
|
|
|
|
'md5file'=>'',
|
2018-02-25 17:25:10 +01:00
|
|
|
'category'=>'',
|
2017-10-07 16:58:24 +02:00
|
|
|
'uuid'=>md5(uniqid()),
|
|
|
|
'parent'=>'',
|
2018-02-25 17:25:10 +01:00
|
|
|
'slug'=>$Language->get('example-page-3-slug')
|
|
|
|
),
|
|
|
|
$Language->get('example-page-4-slug')=>array(
|
|
|
|
'description'=>'',
|
|
|
|
'username'=>'admin',
|
|
|
|
'tags'=>array(),
|
|
|
|
'status'=>'static',
|
|
|
|
'type'=>'page',
|
|
|
|
'date'=>$currentDate,
|
|
|
|
'dateModified'=>'',
|
|
|
|
'allowComments'=>true,
|
2018-06-25 23:17:43 +02:00
|
|
|
'position'=>4,
|
2018-02-25 17:25:10 +01:00
|
|
|
'coverImage'=>'',
|
|
|
|
'md5file'=>'',
|
|
|
|
'category'=>'',
|
|
|
|
'uuid'=>md5(uniqid()),
|
|
|
|
'parent'=>'',
|
|
|
|
'slug'=>$Language->get('example-page-4-slug')
|
|
|
|
)
|
2015-08-04 05:10:12 +02:00
|
|
|
);
|
|
|
|
file_put_contents(PATH_DATABASES.'pages.php', $dataHead.json_encode($data, JSON_PRETTY_PRINT), LOCK_EX);
|
|
|
|
|
|
|
|
// File site.php
|
2017-05-30 20:28:55 +02:00
|
|
|
|
2018-06-25 23:17:43 +02:00
|
|
|
// If Bludit is not installed inside a folder, the URL doesn't need finish with /
|
2017-05-30 20:28:55 +02:00
|
|
|
// Example (root): https://domain.com
|
|
|
|
// Example (inside a folder): https://domain.com/folder/
|
2017-09-05 23:46:45 +02:00
|
|
|
if (HTML_PATH_ROOT=='/') {
|
2017-05-30 20:28:55 +02:00
|
|
|
$siteUrl = PROTOCOL.DOMAIN;
|
|
|
|
} else {
|
|
|
|
$siteUrl = PROTOCOL.DOMAIN.HTML_PATH_ROOT;
|
|
|
|
}
|
2015-08-04 05:10:12 +02:00
|
|
|
$data = array(
|
2015-11-16 05:20:58 +01:00
|
|
|
'title'=>'BLUDIT',
|
2018-02-25 17:25:10 +01:00
|
|
|
'slogan'=>$Language->get('welcome-to-bludit'),
|
|
|
|
'description'=>$Language->get('congratulations-you-have-successfully-installed-your-bludit'),
|
2015-11-16 05:20:58 +01:00
|
|
|
'footer'=>'Copyright © '.Date::current('Y'),
|
2017-09-05 23:46:45 +02:00
|
|
|
'itemsPerPage'=>6,
|
|
|
|
'language'=>$Language->currentLanguage(),
|
2017-09-04 23:09:45 +02:00
|
|
|
'locale'=>$Language->locale(),
|
2015-10-24 01:23:33 +02:00
|
|
|
'timezone'=>$timezone,
|
2018-02-25 17:25:10 +01:00
|
|
|
'theme'=>'alternative',
|
2018-06-24 13:37:45 +02:00
|
|
|
'adminTheme'=>'booty',
|
2015-08-04 05:10:12 +02:00
|
|
|
'homepage'=>'',
|
2017-09-05 23:46:45 +02:00
|
|
|
'pageNotFound'=>'',
|
2015-08-04 05:10:12 +02:00
|
|
|
'uriPage'=>'/',
|
|
|
|
'uriTag'=>'/tag/',
|
2017-05-03 21:10:03 +02:00
|
|
|
'uriCategory'=>'/category/',
|
2018-03-06 19:52:06 +01:00
|
|
|
'uriBlog'=>'',
|
2017-05-30 20:28:55 +02:00
|
|
|
'url'=>$siteUrl,
|
2017-09-05 23:46:45 +02:00
|
|
|
'emailFrom'=>'no-reply@'.DOMAIN,
|
2018-02-25 17:25:10 +01:00
|
|
|
'orderBy'=>'date',
|
|
|
|
'currentBuild'=>'0',
|
|
|
|
'twitter'=>'https://twitter.com/bludit',
|
|
|
|
'facebook'=>'https://www.facebook.com/bluditcms',
|
|
|
|
'codepen'=>'',
|
|
|
|
'googlePlus'=>'https://plus.google.com/+Bluditcms',
|
|
|
|
'github'=> 'https://github.com/bludit',
|
2018-06-24 13:37:45 +02:00
|
|
|
'instagram'=>'',
|
|
|
|
'gitlab'=>'',
|
|
|
|
'linkedin'=>'',
|
|
|
|
'dateFormat'=>'F j, Y',
|
|
|
|
'extremeFriendly'=>true
|
2015-08-04 05:10:12 +02:00
|
|
|
);
|
|
|
|
file_put_contents(PATH_DATABASES.'site.php', $dataHead.json_encode($data, JSON_PRETTY_PRINT), LOCK_EX);
|
|
|
|
|
2015-10-30 23:44:12 +01:00
|
|
|
// File users.php
|
2017-05-21 22:01:44 +02:00
|
|
|
$salt = uniqid();
|
2015-08-04 05:10:12 +02:00
|
|
|
$passwordHash = sha1($adminPassword.$salt);
|
2017-09-23 13:10:05 +02:00
|
|
|
$tokenAuth = md5( uniqid().time().DOMAIN );
|
2015-08-04 05:10:12 +02:00
|
|
|
|
|
|
|
$data = array(
|
|
|
|
'admin'=>array(
|
2017-09-05 23:46:45 +02:00
|
|
|
'firstName'=>$Language->get('Administrator'),
|
|
|
|
'lastName'=>'',
|
|
|
|
'role'=>'admin',
|
|
|
|
'password'=>$passwordHash,
|
|
|
|
'salt'=>$salt,
|
2018-03-02 19:59:30 +01:00
|
|
|
'email'=>'',
|
2017-09-05 23:46:45 +02:00
|
|
|
'registered'=>$currentDate,
|
2018-01-01 20:19:45 +01:00
|
|
|
'tokenRemember'=>'',
|
2017-09-23 13:10:05 +02:00
|
|
|
'tokenAuth'=>$tokenAuth,
|
2017-09-05 23:46:45 +02:00
|
|
|
'tokenAuthTTL'=>'2009-03-15 14:00',
|
|
|
|
'twitter'=>'',
|
|
|
|
'facebook'=>'',
|
|
|
|
'googlePlus'=>'',
|
|
|
|
'instagram'=>''
|
2015-08-04 05:10:12 +02:00
|
|
|
)
|
|
|
|
);
|
|
|
|
file_put_contents(PATH_DATABASES.'users.php', $dataHead.json_encode($data, JSON_PRETTY_PRINT), LOCK_EX);
|
|
|
|
|
2017-05-19 00:45:14 +02:00
|
|
|
// File syslog.php
|
|
|
|
$data = array(
|
|
|
|
array(
|
2017-09-05 23:46:45 +02:00
|
|
|
'date'=>$currentDate,
|
|
|
|
'dictionaryKey'=>'welcome-to-bludit',
|
|
|
|
'notes'=>'',
|
|
|
|
'idExecution'=>uniqid(),
|
|
|
|
'method'=>'POST',
|
|
|
|
'username'=>'admin'
|
2017-05-19 00:45:14 +02:00
|
|
|
));
|
|
|
|
file_put_contents(PATH_DATABASES.'syslog.php', $dataHead.json_encode($data, JSON_PRETTY_PRINT), LOCK_EX);
|
|
|
|
|
2015-08-18 04:02:19 +02:00
|
|
|
// File security.php
|
|
|
|
$data = array(
|
|
|
|
'minutesBlocked'=>5,
|
|
|
|
'numberFailuresAllowed'=>10,
|
|
|
|
'blackList'=>array()
|
|
|
|
);
|
|
|
|
file_put_contents(PATH_DATABASES.'security.php', $dataHead.json_encode($data, JSON_PRETTY_PRINT), LOCK_EX);
|
|
|
|
|
2017-04-26 18:56:10 +02:00
|
|
|
// File categories.php
|
2017-05-04 21:32:18 +02:00
|
|
|
$data = array(
|
2017-07-15 21:28:54 +02:00
|
|
|
'general'=>array('name'=>'General', 'list'=>array()),
|
|
|
|
'music'=>array('name'=>'Music', 'list'=>array()),
|
|
|
|
'videos'=>array('name'=>'Videos', 'list'=>array())
|
2017-05-04 21:32:18 +02:00
|
|
|
);
|
2017-04-26 18:56:10 +02:00
|
|
|
file_put_contents(PATH_DATABASES.'categories.php', $dataHead.json_encode($data, JSON_PRETTY_PRINT), LOCK_EX);
|
|
|
|
|
2015-08-31 03:18:06 +02:00
|
|
|
// File tags.php
|
2017-05-17 18:48:51 +02:00
|
|
|
$data = array(
|
|
|
|
'bludit'=>array('name'=>'Bludit', 'list'=>array('welcome')),
|
|
|
|
'cms'=>array('name'=>'CMS', 'list'=>array('welcome')),
|
|
|
|
'flat-files'=>array('name'=>'Flat files', 'list'=>array('welcome'))
|
2015-08-04 05:10:12 +02:00
|
|
|
);
|
2017-05-17 18:48:51 +02:00
|
|
|
file_put_contents(PATH_DATABASES.'tags.php', $dataHead.json_encode($data, JSON_PRETTY_PRINT), LOCK_EX);
|
2015-08-31 03:18:06 +02:00
|
|
|
|
2018-02-25 17:25:10 +01:00
|
|
|
// File plugins/about/db.php
|
2015-08-29 07:02:09 +02:00
|
|
|
file_put_contents(
|
2018-02-25 17:25:10 +01:00
|
|
|
PATH_PLUGINS_DATABASES.'about'.DS.'db.php',
|
2015-08-29 07:02:09 +02:00
|
|
|
$dataHead.json_encode(
|
|
|
|
array(
|
2018-02-25 17:25:10 +01:00
|
|
|
'position'=>1,
|
|
|
|
'label'=>$Language->get('About'),
|
|
|
|
'text'=>$Language->get('this-is-a-brief-description-of-yourself-our-your-site')
|
2015-08-29 07:02:09 +02:00
|
|
|
),
|
|
|
|
JSON_PRETTY_PRINT),
|
|
|
|
LOCK_EX
|
|
|
|
);
|
|
|
|
|
2015-08-31 03:18:06 +02:00
|
|
|
// File plugins/tags/db.php
|
|
|
|
file_put_contents(
|
|
|
|
PATH_PLUGINS_DATABASES.'tags'.DS.'db.php',
|
|
|
|
$dataHead.json_encode(
|
|
|
|
array(
|
2017-09-05 23:46:45 +02:00
|
|
|
'position'=>2,
|
2015-08-31 03:18:06 +02:00
|
|
|
'label'=>$Language->get('Tags')
|
|
|
|
),
|
|
|
|
JSON_PRETTY_PRINT),
|
|
|
|
LOCK_EX
|
2015-08-29 07:02:09 +02:00
|
|
|
);
|
|
|
|
|
2018-06-25 23:17:43 +02:00
|
|
|
// File plugins/simple-stats/db.php
|
|
|
|
file_put_contents(
|
|
|
|
PATH_PLUGINS_DATABASES.'simple-stats'.DS.'db.php',
|
|
|
|
$dataHead.json_encode(
|
|
|
|
array(
|
|
|
|
'numberOfDays'=>7,
|
|
|
|
'label'=>$Language->get('Visits'),
|
|
|
|
'excludeAdmins'=>false,
|
|
|
|
'position'=>1
|
|
|
|
),
|
|
|
|
JSON_PRETTY_PRINT),
|
|
|
|
LOCK_EX
|
|
|
|
);
|
|
|
|
|
|
|
|
// File plugins/quill/db.php
|
|
|
|
file_put_contents(
|
|
|
|
PATH_PLUGINS_DATABASES.'quill'.DS.'db.php',
|
|
|
|
$dataHead.json_encode(
|
|
|
|
array(
|
|
|
|
'position'=>1
|
|
|
|
),
|
|
|
|
JSON_PRETTY_PRINT),
|
|
|
|
LOCK_EX
|
|
|
|
);
|
|
|
|
|
2018-02-25 17:25:10 +01:00
|
|
|
// Page create-your-own-content
|
|
|
|
$data = 'Title: '.$Language->get('example-page-1-title').PHP_EOL.'Content: '.PHP_EOL.$Language->get('example-page-1-content');
|
|
|
|
file_put_contents(PATH_PAGES.$Language->get('example-page-1-slug').DS.FILENAME, $data, LOCK_EX);
|
2016-01-17 22:11:20 +01:00
|
|
|
|
2018-02-25 17:25:10 +01:00
|
|
|
// Page set-up-your-new-site
|
|
|
|
$data = 'Title: '.$Language->get('example-page-2-title').PHP_EOL.'Content: '.PHP_EOL.$Language->get('example-page-2-content');
|
|
|
|
file_put_contents(PATH_PAGES.$Language->get('example-page-2-slug').DS.FILENAME, $data, LOCK_EX);
|
2015-05-07 03:00:01 +02:00
|
|
|
|
2018-02-25 17:25:10 +01:00
|
|
|
// Page follow-bludit
|
|
|
|
$data = 'Title: '.$Language->get('example-page-3-title').PHP_EOL.'Content: '.PHP_EOL.$Language->get('example-page-3-content');
|
|
|
|
file_put_contents(PATH_PAGES.$Language->get('example-page-3-slug').DS.FILENAME, $data, LOCK_EX);
|
2015-05-07 03:00:01 +02:00
|
|
|
|
2018-02-25 17:25:10 +01:00
|
|
|
// Page about
|
|
|
|
$data = 'Title: '.$Language->get('example-page-4-title').PHP_EOL.'Content: '.PHP_EOL.$Language->get('example-page-4-content');
|
|
|
|
file_put_contents(PATH_PAGES.$Language->get('example-page-4-slug').DS.FILENAME, $data, LOCK_EX);
|
2015-08-04 05:10:12 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-10-10 23:08:00 +02:00
|
|
|
function redirect($url) {
|
2018-06-25 23:17:43 +02:00
|
|
|
if (!headers_sent()) {
|
2016-10-10 23:08:00 +02:00
|
|
|
header("Location:".$url, TRUE, 302);
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
exit('<meta http-equiv="refresh" content="0; url="'.$url.'">');
|
|
|
|
}
|
|
|
|
|
2015-05-15 00:07:45 +02:00
|
|
|
// ============================================================================
|
|
|
|
// MAIN
|
|
|
|
// ============================================================================
|
|
|
|
|
2018-06-25 23:17:43 +02:00
|
|
|
if (alreadyInstalled()) {
|
|
|
|
$errorText = 'Bludit is already installed ;)';
|
|
|
|
error_log('[ERROR] '.$errorText, 0);
|
|
|
|
exit($errorText);
|
2015-05-15 00:07:45 +02:00
|
|
|
}
|
|
|
|
|
2018-06-25 23:17:43 +02:00
|
|
|
// Install a demo, just call the install.php?demo=true
|
|
|
|
if (isset($_GET['demo'])) {
|
|
|
|
install('demo123', 'UTC');
|
2016-10-10 23:08:00 +02:00
|
|
|
redirect(HTML_PATH_ROOT);
|
|
|
|
}
|
2015-08-04 05:10:12 +02:00
|
|
|
|
2018-06-25 23:17:43 +02:00
|
|
|
// Install by POST method
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
|
|
|
install($_POST['password'], $_POST['timezone']);
|
|
|
|
redirect(HTML_PATH_ROOT);
|
2015-05-15 00:07:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|
2018-06-25 23:17:43 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
2015-05-15 00:07:45 +02:00
|
|
|
<head>
|
2015-08-16 12:34:53 +02:00
|
|
|
<title><?php echo $Language->get('Bludit Installer') ?></title>
|
2018-06-25 23:17:43 +02:00
|
|
|
<meta charset="<?php echo CHARSET ?>">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
<meta name="robots" content="noindex,nofollow">
|
2015-05-15 00:07:45 +02:00
|
|
|
|
2015-10-24 01:23:33 +02:00
|
|
|
<!-- Favicon -->
|
2018-06-25 23:17:43 +02:00
|
|
|
<link rel="shortcut icon" type="image/x-icon" href="bl-kernel/admin/themes/booty/img/favicon.png?version=<?php echo time() ?>">
|
2015-05-15 00:07:45 +02:00
|
|
|
|
2015-10-24 01:23:33 +02:00
|
|
|
<!-- CSS -->
|
2018-07-02 00:24:53 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="bl-kernel/css/bootstrap.min.css?version=<?php echo time() ?>">
|
2018-06-25 23:17:43 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="bl-kernel/admin/themes/booty/css/bludit.css?version=<?php echo time() ?>">
|
2015-10-24 01:23:33 +02:00
|
|
|
|
|
|
|
<!-- Javascript -->
|
2018-07-02 00:24:53 +02:00
|
|
|
<script charset="utf-8" src="bl-kernel/js/jquery.min.js?version=<?php echo time() ?>"></script>
|
|
|
|
<script charset="utf-8" src="bl-kernel/js/bootstrap-bundle.min.js?version=<?php echo time() ?>"></script>
|
|
|
|
<script charset="utf-8" src="bl-kernel/js/jstz.min.js?version=<?php echo time() ?>"></script>
|
2015-10-24 01:23:33 +02:00
|
|
|
</head>
|
2018-06-25 23:17:43 +02:00
|
|
|
<body class="login">
|
|
|
|
<div class="container">
|
|
|
|
<div class="row justify-content-md-center pt-5">
|
|
|
|
<div class="col-4 pt-5">
|
|
|
|
<h1 class="text-center mb-5 mt-5 font-weight-normal text-uppercase" style="color: #555;"><?php echo $Language->get('Bludit Installer') ?></h1>
|
|
|
|
<?php
|
|
|
|
$system = checkSystem();
|
|
|
|
if (!empty($system)) {
|
|
|
|
foreach ($system as $values) {
|
|
|
|
echo '<div class="uk-panel">';
|
|
|
|
echo '<div class="uk-panel-badge uk-badge uk-badge-danger">FAIL</div>';
|
|
|
|
echo '<h3 class="uk-panel-title">'.$values['title'].'</h3>';
|
|
|
|
echo $values['errorText'];
|
|
|
|
echo '</div>';
|
|
|
|
}
|
2015-10-24 01:23:33 +02:00
|
|
|
}
|
2018-06-25 23:17:43 +02:00
|
|
|
elseif (isset($_GET['language']))
|
|
|
|
{
|
|
|
|
?>
|
|
|
|
<p><?php echo $Language->get('Choose a password for the username admin') ?></p>
|
|
|
|
|
|
|
|
<form id="jsformInstaller" method="post" action="" autocomplete="off">
|
|
|
|
<input type="hidden" name="timezone" id="jstimezone" value="UTC">
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<input type="text" value="admin" class="form-control form-control-lg" id="jsusername" name="username" placeholder="Username" disabled>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group mb-0">
|
|
|
|
<input type="password" class="form-control form-control-lg" id="jspassword" name="password" placeholder="<?php $Language->p('Password') ?>">
|
|
|
|
</div>
|
|
|
|
<div id="jsshowPassword" style="cursor: pointer;" class="text-center pt-0 text-muted"><?php $Language->p('Show password') ?></div>
|
|
|
|
|
|
|
|
<div class="form-group mt-4">
|
|
|
|
<button type="submit" class="btn btn-primary mr-2 w-100 btn-lg" name="install"><?php $Language->p('Install') ?></button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
<?php
|
2015-08-04 05:10:12 +02:00
|
|
|
}
|
2018-06-25 23:17:43 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
?>
|
|
|
|
<form id="jsformLanguage" method="get" action="" autocomplete="off">
|
|
|
|
<label for="jslanguage"><?php echo $Language->get('Choose your language') ?></label>
|
|
|
|
<select id="jslanguage" name="language" class="form-control form-control-lg">
|
|
|
|
<?php
|
|
|
|
$htmlOptions = getLanguageList();
|
|
|
|
foreach($htmlOptions as $fname=>$native) {
|
|
|
|
echo '<option value="'.$fname.'"'.( ($finalLanguage===$fname)?' selected="selected"':'').'>'.$native.'</option>';
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
<div class="form-group mt-4">
|
|
|
|
<button type="submit" class="btn btn-primary mr-2 w-100 btn-lg"><?php $Language->p('Next') ?></button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
<?php
|
2015-08-04 05:10:12 +02:00
|
|
|
}
|
2018-06-25 23:17:43 +02:00
|
|
|
?>
|
2015-10-24 01:23:33 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-08-17 02:24:22 +02:00
|
|
|
</div>
|
2015-08-04 05:10:12 +02:00
|
|
|
|
2015-08-17 02:24:22 +02:00
|
|
|
<script>
|
|
|
|
$(document).ready(function()
|
|
|
|
{
|
2016-02-10 02:10:12 +01:00
|
|
|
// Timezone
|
|
|
|
var timezone = jstz.determine();
|
|
|
|
$("#jstimezone").val( timezone.name() );
|
2015-10-24 01:23:33 +02:00
|
|
|
|
|
|
|
// Show password
|
|
|
|
$("#jsshowPassword").on("click", function() {
|
|
|
|
var input = document.getElementById("jspassword");
|
|
|
|
|
|
|
|
if(input.getAttribute("type")=="text") {
|
|
|
|
input.setAttribute("type", "password");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
input.setAttribute("type", "text");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2015-08-17 02:24:22 +02:00
|
|
|
});
|
|
|
|
</script>
|
2015-08-04 05:10:12 +02:00
|
|
|
|
2015-05-15 00:07:45 +02:00
|
|
|
</body>
|
2018-06-24 13:37:45 +02:00
|
|
|
</html>
|