* Copyright (C) 2004 Benoit Mortier * Copyright (C) 2004 Sebastien DiCintio * Copyright (C) 2007-2012 Laurent Destailleur * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ /** * \file htdocs/support/inc.php * \ingroup core * \brief File that define environment for support pages */ // Define DOL_DOCUMENT_ROOT if (!defined('DOL_DOCUMENT_ROOT')) { define('DOL_DOCUMENT_ROOT', '..'); } require_once DOL_DOCUMENT_ROOT.'/core/class/conf.class.php'; require_once DOL_DOCUMENT_ROOT.'/core/class/translate.class.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/functions.lib.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php'; $conf = new Conf(); // Force $_REQUEST["logtohtml"] $_REQUEST["logtohtml"] = 1; // Correction PHP_SELF (ex pour apache via caudium) car PHP_SELF doit valoir URL relative // et non path absolu. if (isset($_SERVER["DOCUMENT_URI"]) && $_SERVER["DOCUMENT_URI"]) { $_SERVER["PHP_SELF"] = $_SERVER["DOCUMENT_URI"]; } $includeconferror = ''; // Define vars $conffiletoshowshort = "conf.php"; // Define localization of conf file $conffile = "../conf/conf.php"; $conffiletoshow = "htdocs/conf/conf.php"; // For debian/redhat like systems /* if (!file_exists($conffile)) { $conffile = "/etc/dolibarr/conf.php"; $conffiletoshow = "/etc/dolibarr/conf.php"; } */ // Load conf file if it is already defined if (!defined('DONOTLOADCONF') && file_exists($conffile) && filesize($conffile) > 8) { // Test on filesize is to ensure that conf file is more that an empty template with just global->MAIN_LOGTOHTML = 1; // Define prefix if (!isset($dolibarr_main_db_prefix) || !$dolibarr_main_db_prefix) { $dolibarr_main_db_prefix = 'llx_'; } define('MAIN_DB_PREFIX', (isset($dolibarr_main_db_prefix) ? $dolibarr_main_db_prefix : '')); define('DOL_CLASS_PATH', 'class/'); // Filesystem path to class dir define('DOL_DATA_ROOT', (isset($dolibarr_main_data_root) ? $dolibarr_main_data_root : '')); define('DOL_MAIN_URL_ROOT', (isset($dolibarr_main_url_root) ? $dolibarr_main_url_root : '')); // URL relative root $uri = preg_replace('/^http(s?):\/\//i', '', constant('DOL_MAIN_URL_ROOT')); // $uri contains url without http* $suburi = strstr($uri, '/'); // $suburi contains url without domain if ($suburi == '/') { $suburi = ''; // If $suburi is /, it is now '' } define('DOL_URL_ROOT', $suburi); // URL relative root ('', '/dolibarr', ...) if (empty($character_set_client)) { $character_set_client = "UTF-8"; } $conf->file->character_set_client = strtoupper($character_set_client); if (empty($dolibarr_main_db_character_set)) { $dolibarr_main_db_character_set = ($conf->db->type == 'mysqli' ? 'utf8' : ''); // Old installation } $conf->db->character_set = $dolibarr_main_db_character_set; if (empty($dolibarr_main_db_collation)) { $dolibarr_main_db_collation = ($conf->db->type == 'mysqli' ? 'utf8_unicode_ci' : ''); // Old installation } $conf->db->dolibarr_main_db_collation = $dolibarr_main_db_collation; if (empty($dolibarr_main_db_encryption)) { $dolibarr_main_db_encryption = 0; } $conf->db->dolibarr_main_db_encryption = $dolibarr_main_db_encryption; if (empty($dolibarr_main_db_cryptkey)) { $dolibarr_main_db_cryptkey = ''; } $conf->db->dolibarr_main_db_cryptkey = $dolibarr_main_db_cryptkey; if (empty($conf->db->user)) { $conf->db->user = ''; } // Defini object langs $langs = new Translate('..', $conf); if (GETPOST('lang', 'aZ09')) { $langs->setDefaultLang(GETPOST('lang', 'aZ09')); } else { $langs->setDefaultLang('auto'); } /** * Load conf file (file must exists) * * @param string $dolibarr_main_document_root Root directory of Dolibarr bin files * @return int Return integer <0 if KO, >0 if OK */ function loadconf($dolibarr_main_document_root) { global $conf; global $dolibarr_main_db_type; global $dolibarr_main_db_host; global $dolibarr_main_db_port; global $dolibarr_main_db_name; global $dolibarr_main_db_user; global $dolibarr_main_db_pass; global $character_set_client; $return = 1; if (!class_exists('Conf')) { $return = include_once $dolibarr_main_document_root.'/core/class/conf.class.php'; } if (!$return) { return -1; } $conf = new Conf(); $conf->db->type = trim($dolibarr_main_db_type); $conf->db->host = trim($dolibarr_main_db_host); $conf->db->port = trim($dolibarr_main_db_port); $conf->db->name = trim($dolibarr_main_db_name); $conf->db->user = trim($dolibarr_main_db_user); $conf->db->pass = trim($dolibarr_main_db_pass); if (empty($conf->db->dolibarr_main_db_collation)) { $conf->db->dolibarr_main_db_collation = 'utf8_unicode_ci'; } return 1; } /** * Show HTML header * * @param string $soutitre Title * @param string $next Next * @param string $action Action code * @return void */ function pHeader($soutitre, $next, $action = 'none') { global $conf, $langs; $langs->loadLangs(array("main", "admin")); // On force contenu dans format sortie header("Content-type: text/html; charset=".$conf->file->character_set_client); // Security options header("X-Content-Type-Options: nosniff"); header("X-Frame-Options: SAMEORIGIN"); // Frames allowed only if on same domain (stop some XSS attacks) print ''."\n"; print ''."\n"; print ''."\n"; print ''."\n"; print ''."\n"; print ''."\n"; print ''."\n"; print ''."\n"; print ''.$langs->trans("DolibarrHelpCenter").''."\n"; print ''."\n"; print ''."\n"; print '
'; print 'logohelpcenter

'; print ''.$soutitre.''."\n"; print '

'; } /** * Print HTML footer * * @param integer $nonext No button "Next step" * @param string $setuplang Language code * @return void */ function pFooter($nonext = 0, $setuplang = '') { global $langs; $langs->load("main"); $langs->load("admin"); print ''."\n"; print ''."\n"; }