5.3. (ERR_202)'); } // Check PHP modules if(!extension_loaded('mbstring')) { exit('PHP module mbstring is not installed. Check the requirements.'); } if(!extension_loaded('json')) { exit('PHP module json is not installed. Check the requirements.'); } if(!extension_loaded('gd')) { exit('PHP module gd is not installed. Check the requirements.'); } if(!extension_loaded('dom')) { exit('PHP module dom is not installed. Check the requirements.'); } // Security constant define('BLUDIT', true); // Directory separator define('DS', DIRECTORY_SEPARATOR); // PHP paths define('PATH_ROOT', __DIR__.DS); define('PATH_CONTENT', PATH_ROOT.'bl-content'.DS); define('PATH_KERNEL', PATH_ROOT.'bl-kernel'.DS); define('PATH_LANGUAGES', PATH_ROOT.'bl-languages'.DS); define('PATH_UPLOADS', PATH_CONTENT.'uploads'.DS); define('PATH_TMP', PATH_CONTENT.'tmp'.DS); define('PATH_PAGES', PATH_CONTENT.'pages'.DS); define('PATH_DATABASES', PATH_CONTENT.'databases'.DS); define('PATH_PLUGINS_DATABASES',PATH_CONTENT.'databases'.DS.'plugins'.DS); define('PATH_UPLOADS_PROFILES', PATH_UPLOADS.'profiles'.DS); define('PATH_UPLOADS_THUMBNAILS',PATH_UPLOADS.'thumbnails'.DS); define('PATH_HELPERS', PATH_KERNEL.'helpers'.DS); define('PATH_ABSTRACT', PATH_KERNEL.'abstract'.DS); // Protecting against Symlink attacks. define('CHECK_SYMBOLIC_LINKS', TRUE); // Filename for posts and pages define('FILENAME', 'index.txt'); // Domain and protocol define('DOMAIN', $_SERVER['HTTP_HOST']); if(!empty($_SERVER['HTTPS'])) { define('PROTOCOL', 'https://'); } else { define('PROTOCOL', 'http://'); } // Base URL // The user can define the base URL. // Left empty if you want to Bludit try to detect the base URL. $base = ''; if( !empty($_SERVER['DOCUMENT_ROOT']) && !empty($_SERVER['SCRIPT_NAME']) && empty($base) ) { $base = str_replace($_SERVER['DOCUMENT_ROOT'], '', $_SERVER['SCRIPT_NAME']); $base = dirname($base); } elseif( empty($base) ) { $base = empty( $_SERVER['SCRIPT_NAME'] ) ? $_SERVER['PHP_SELF'] : $_SERVER['SCRIPT_NAME']; $base = dirname($base); } if($base!=DS) { $base = trim($base, '/'); $base = '/'.$base.'/'; } else { // Workaround for Windows Web Servers $base = '/'; } define('HTML_PATH_ROOT', $base); // Log separator define('LOG_SEP', ' | '); // JSON if(!defined('JSON_PRETTY_PRINT')) { define('JSON_PRETTY_PRINT', 128); } // Database format date define('DB_DATE_FORMAT', 'Y-m-d H:i:s'); // Charset, default UTF-8. define('CHARSET', 'UTF-8'); // Set internal character encoding. mb_internal_encoding(CHARSET); // Set HTTP output character encoding. mb_http_output(CHARSET); // --- PHP Classes --- include(PATH_ABSTRACT.'dbjson.class.php'); include(PATH_HELPERS.'sanitize.class.php'); include(PATH_HELPERS.'valid.class.php'); include(PATH_HELPERS.'text.class.php'); include(PATH_HELPERS.'log.class.php'); include(PATH_HELPERS.'date.class.php'); include(PATH_KERNEL.'dblanguage.class.php'); // --- LANGUAGE and LOCALE --- // Language from the URI if(isset($_GET['language'])) { $localeFromHTTP = Sanitize::html($_GET['language']); } else { // Try to detect the locale if( function_exists('locale_accept_from_http') ) { $localeFromHTTP = locale_accept_from_http($_SERVER['HTTP_ACCEPT_LANGUAGE']); } else { $explodeLocale = explode(',', $_SERVER['HTTP_ACCEPT_LANGUAGE']); $localeFromHTTP = empty($explodeLocale[0])?'en_US':str_replace('-', '_', $explodeLocale[0]); } } // Check if the dictionary exists, otherwise the default language is English. if( !file_exists(PATH_LANGUAGES.$localeFromHTTP.'.json') ) { $localeFromHTTP = 'en_US'; } // Get language file $Language = new dbLanguage($localeFromHTTP); // Set locale setlocale(LC_ALL, $localeFromHTTP); // --- TIMEZONE --- // Check if timezone is defined in php.ini $iniDate = ini_get('date.timezone'); if(empty($iniDate)) { // Timezone not defined in php.ini, then set UTC as default. date_default_timezone_set('UTC'); } // ============================================================================ // FUNCTIONS // ============================================================================ // Returns an array with all languages function getLanguageList() { $files = glob(PATH_LANGUAGES.'*.json'); $tmp = array(); foreach($files as $file) { $t = new dbJSON($file, false); $native = $t->db['language-data']['native']; $locale = basename($file, '.json'); $tmp[$locale] = $native; } return $tmp; } // Check if Bludit is installed function alreadyInstalled() { return file_exists(PATH_DATABASES.'site.php'); } // Check the system, permissions, php version, modules, etc. // Returns an array with the problems otherwise empty array. function checkSystem() { $stdOut = array(); $dirpermissions = 0755; // Check .htaccess file for different webservers if( !file_exists(PATH_ROOT.'.htaccess') ) { if ( !isset($_SERVER['SERVER_SOFTWARE']) || stripos($_SERVER['SERVER_SOFTWARE'], 'Apache') !== false || stripos($_SERVER['SERVER_SOFTWARE'], 'LiteSpeed') !== false ) { $errorText = 'Missing file, upload the file .htaccess (ERR_201)'; error_log($errorText, 0); $tmp['title'] = 'File .htaccess'; $tmp['errorText'] = $errorText; array_push($stdOut, $tmp); } } // Try to create the directory content @mkdir(PATH_CONTENT, $dirpermissions, true); // Check if the directory content is writeable. if(!is_writable(PATH_CONTENT)) { $errorText = 'Writing test failure, check directory content permissions. (ERR_205)'; error_log($errorText, 0); $tmp['title'] = 'PHP permissions'; $tmp['errorText'] = $errorText; array_push($stdOut, $tmp); } return $stdOut; } // Installation function function install($adminPassword, $email, $timezone) { global $Language; $stdOut = array(); if( !date_default_timezone_set($timezone) ) { date_default_timezone_set('UTC'); } $currentDate = Date::current(DB_DATE_FORMAT); // ============================================================================ // Create directories // ============================================================================ // 7=read,write,execute | 5=read,execute $dirpermissions = 0755; if(!mkdir(PATH_PAGES.'welcome', $dirpermissions, true)) { $errorText = 'Error when trying to created the directory=>'.PATH_PAGES.'welcome'; error_log($errorText, 0); } if(!mkdir(PATH_PAGES.'about', $dirpermissions, true)) { $errorText = 'Error when trying to created the directory=>'.PATH_PAGES.'about'; error_log($errorText, 0); } if(!mkdir(PATH_PAGES.'error', $dirpermissions, true)) { $errorText = 'Error when trying to created the directory=>'.PATH_PAGES.'error'; error_log($errorText, 0); } if(!mkdir(PATH_PLUGINS_DATABASES.'pages', $dirpermissions, true)) { $errorText = 'Error when trying to created the directory=>'.PATH_PLUGINS_DATABASES.'pages'; error_log($errorText, 0); } if(!mkdir(PATH_PLUGINS_DATABASES.'simplemde', $dirpermissions, true)) { $errorText = 'Error when trying to created the directory=>'.PATH_PLUGINS_DATABASES.'simplemde'; error_log($errorText, 0); } if(!mkdir(PATH_PLUGINS_DATABASES.'tags', $dirpermissions, true)) { $errorText = 'Error when trying to created the directory=>'.PATH_PLUGINS_DATABASES.'tags'; error_log($errorText, 0); } if(!mkdir(PATH_PLUGINS_DATABASES.'about', $dirpermissions, true)) { $errorText = 'Error when trying to created the directory=>'.PATH_PLUGINS_DATABASES.'about'; error_log($errorText, 0); } if(!mkdir(PATH_UPLOADS_PROFILES, $dirpermissions, true)) { $errorText = 'Error when trying to created the directory=>'.PATH_UPLOADS_PROFILES; error_log($errorText, 0); } if(!mkdir(PATH_UPLOADS_THUMBNAILS, $dirpermissions, true)) { $errorText = 'Error when trying to created the directory=>'.PATH_UPLOADS_THUMBNAILS; error_log($errorText, 0); } if(!mkdir(PATH_TMP, $dirpermissions, true)) { $errorText = 'Error when trying to created the directory=>'.PATH_TMP; error_log($errorText, 0); } // ============================================================================ // Create files // ============================================================================ $dataHead = "".PHP_EOL; // File pages.php $data = array( 'error'=>array( 'description'=>$Language->get('Page not found'), 'username'=>'admin', 'tags'=>array(), 'status'=>'system', 'date'=>$currentDate, 'dateModified'=>'', 'allowComments'=>false, 'position'=>0, 'coverImage'=>'', 'md5file'=>'', 'category'=>'', 'uuid'=>md5(uniqid()) ), 'about'=>array( 'description'=>$Language->get('About your site or yourself'), 'username'=>'admin', 'tags'=>array(), 'status'=>'fixed', 'date'=>$currentDate, 'dateModified'=>'', 'allowComments'=>true, 'position'=>2, 'coverImage'=>'', 'md5file'=>'', 'category'=>'', 'uuid'=>md5(uniqid()) ), 'welcome'=>array( 'description'=>$Language->get('Welcome to Bludit'), 'username'=>'admin', 'tags'=>array('bludit'=>'Bludit','cms'=>'CMS','flat-files'=>'Flat files'), 'status'=>'published', 'date'=>$currentDate, 'dateModified'=>'', 'allowComments'=>true, 'position'=>1, 'coverImage'=>'', 'md5file'=>'', 'category'=>'general', 'uuid'=>md5(uniqid()) ) ); file_put_contents(PATH_DATABASES.'pages.php', $dataHead.json_encode($data, JSON_PRETTY_PRINT), LOCK_EX); // File site.php // If the website is not installed inside a folder the URL not need finish with / // Example (root): https://domain.com // Example (inside a folder): https://domain.com/folder/ if(HTML_PATH_ROOT=='/') { $siteUrl = PROTOCOL.DOMAIN; } else { $siteUrl = PROTOCOL.DOMAIN.HTML_PATH_ROOT; } $data = array( 'title'=>'BLUDIT', 'slogan'=>'CMS', 'description'=>'', 'footer'=>'Copyright © '.Date::current('Y'), 'language'=>$Language->getCurrentLocale(), 'locale'=>$Language->getCurrentLocale(), 'timezone'=>$timezone, 'theme'=>'kernel-panic', 'adminTheme'=>'default', 'homepage'=>'', 'itemsPerPage'=>6, 'uriPage'=>'/', 'uriTag'=>'/tag/', 'uriCategory'=>'/category/', 'url'=>$siteUrl, 'emailFrom'=>'no-reply@'.DOMAIN ); file_put_contents(PATH_DATABASES.'site.php', $dataHead.json_encode($data, JSON_PRETTY_PRINT), LOCK_EX); // File users.php $salt = uniqid(); $passwordHash = sha1($adminPassword.$salt); $data = array( 'admin'=>array( 'firstName'=>$Language->get('Administrator'), 'lastName'=>'', 'role'=>'admin', 'password'=>$passwordHash, 'salt'=>$salt, 'email'=>$email, 'registered'=>$currentDate, 'tokenEmail'=>'', 'tokenEmailTTL'=>'2009-03-15 14:00', 'twitter'=>'', 'facebook'=>'', 'googlePlus'=>'', 'instagram'=>'' ) ); file_put_contents(PATH_DATABASES.'users.php', $dataHead.json_encode($data, JSON_PRETTY_PRINT), LOCK_EX); // File syslog.php $data = array( array( 'date'=>$currentDate, 'dictionaryKey'=>'welcome-to-bludit', 'notes'=>'', 'idExecution'=>uniqid(), 'method'=>'POST', 'username'=>'admin' )); file_put_contents(PATH_DATABASES.'syslog.php', $dataHead.json_encode($data, JSON_PRETTY_PRINT), LOCK_EX); // 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); // File categories.php $data = array( 'general'=>array('name'=>'General', 'list'=>array()), 'music'=>array('name'=>'Music', 'list'=>array()), 'videos'=>array('name'=>'Videos', 'list'=>array()) ); file_put_contents(PATH_DATABASES.'categories.php', $dataHead.json_encode($data, JSON_PRETTY_PRINT), LOCK_EX); // File tags.php $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')) ); file_put_contents(PATH_DATABASES.'tags.php', $dataHead.json_encode($data, JSON_PRETTY_PRINT), LOCK_EX); // File plugins/pages/db.php file_put_contents( PATH_PLUGINS_DATABASES.'pages'.DS.'db.php', $dataHead.json_encode( array( 'position'=>0, 'homeLink'=>true, 'label'=>$Language->get('Pages'), 'amountOfItems'=>5 ), JSON_PRETTY_PRINT), LOCK_EX ); // File plugins/about/db.php file_put_contents( PATH_PLUGINS_DATABASES.'about'.DS.'db.php', $dataHead.json_encode( array( 'position'=>0, 'label'=>$Language->get('About'), 'text'=>$Language->get('this-is-a-brief-description-of-yourself-our-your-site') ), JSON_PRETTY_PRINT), LOCK_EX ); // File plugins/simplemde/db.php file_put_contents( PATH_PLUGINS_DATABASES.'simplemde'.DS.'db.php', $dataHead.json_encode( array( 'position'=>0, 'tabSize'=>4, 'toolbar'=>'"bold", "italic", "heading", "|", "quote", "unordered-list", "|", "link", "image", "code", "horizontal-rule", "|", "preview", "side-by-side", "fullscreen", "guide"' ), JSON_PRETTY_PRINT), LOCK_EX ); // File plugins/tags/db.php file_put_contents( PATH_PLUGINS_DATABASES.'tags'.DS.'db.php', $dataHead.json_encode( array( 'position'=>0, 'label'=>$Language->get('Tags') ), JSON_PRETTY_PRINT), LOCK_EX ); // File for error page $data = 'Title: '.$Language->get('Error').PHP_EOL.'Content: '.PHP_EOL.$Language->get('installer-page-error-content'); file_put_contents(PATH_PAGES.'error'.DS.FILENAME, $data, LOCK_EX); // File for about page $data = 'Title: '.$Language->get('About').PHP_EOL.'Content: '.PHP_EOL.$Language->get('installer-page-about-content'); file_put_contents(PATH_PAGES.'about'.DS.FILENAME, $data, LOCK_EX); // File for welcome page $text1 = Text::replaceAssoc( array( '{{ADMIN_AREA_LINK}}'=>PROTOCOL.DOMAIN.HTML_PATH_ROOT.'admin' ), $Language->get('Manage your Bludit from the admin panel') ); $data = 'Title: '.$Language->get('Welcome').' Content: ## '.$Language->get('Whats next').' - '.$text1.' - '.$Language->get('Follow Bludit on').' [Twitter](https://twitter.com/bludit) / [Facebook](https://www.facebook.com/bluditcms) / [Google+](https://plus.google.com/+Bluditcms) - '.$Language->get('Chat with developers and users on Gitter').' - '.$Language->get('Visit the support forum').' - '.$Language->get('Read the documentation for more information').' - '.$Language->get('Share with your friends and enjoy'); file_put_contents(PATH_PAGES.'welcome'.DS.FILENAME, $data, LOCK_EX); return true; } // Check form's parameters and finish Bludit installation. function checkPOST($args) { global $Language; // Check empty password if( strlen($args['password']) < 6 ) { return '
'.$Language->g('Password must be at least 6 characters long').'
'; } // Sanitize email $email = sanitize::email($args['email']); // Install Bludit install($args['password'], $email, $args['timezone']); return true; } function redirect($url) { if(!headers_sent()) { header("Location:".$url, TRUE, 302); exit; } exit(''); } // ============================================================================ // MAIN // ============================================================================ $error = ''; if( alreadyInstalled() ) { exit('Bludit is already installed'); } if( isset($_GET['demo']) ) { install('demo123', '', 'UTC'); redirect(HTML_PATH_ROOT); } if( $_SERVER['REQUEST_METHOD'] == 'POST' ) { $error = checkPOST($_POST); if($error===true) { redirect(HTML_PATH_ROOT); } } ?> <?php echo $Language->get('Bludit Installer') ?>

get('Bludit Installer') ?>

'; echo '
FAIL
'; echo '

'.$values['title'].'

'; echo $values['errorText']; echo '
'; } } // Second step elseif(isset($_GET['language'])) { ?>

get('Complete the form choose a password for the username admin') ?>

'.$error.'
'; } ?>
p('Show password') ?>

get('Choose your language') ?>