Skip to content
Extraits de code Groupes Projets
Valider cb5a2985 rédigé par Fil's avatar Fil
Parcourir les fichiers

integration de #578 pour les sites forwardes, voir aussi #401

parent 64244f36
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -747,7 +747,6 @@ function test_valeur_serveur($truc) {
// la racine 0. Sur url/perso/ elle vaut 2
// http://doc.spip.org/@url_de_base
function url_de_base() {
global $REQUEST_URI;
static $url;
......@@ -755,11 +754,11 @@ function url_de_base() {
return $url;
// cas particulier des sites filtres par un proxy entrant
// cf. http://trac.rezo.net/trac/spip/ticket/401
if (isset($_SERVER['HTTP_X_FORWARDED_HOST'])) {
$a = $GLOBALS['meta']['adresse_site'];
return (substr($a,-1) == '/')?$a:$a.'/';
}
// cf. http://trac.rezo.net/trac/spip/ticket/478
if (isset($_SERVER['HTTP_X_FORWARDED_HOST']))
$server = $_SERVER['HTTP_X_FORWARDED_HOST'];
else
$server = $_SERVER['HTTP_HOST'];
$http = (
(isset($_SERVER["SCRIPT_URI"]) AND
......@@ -768,7 +767,7 @@ function url_de_base() {
test_valeur_serveur($_SERVER['HTTPS']))
) ? 'https' : 'http';
# note : HTTP_HOST contient le :port si necessaire
$myself = $http.'://'.$_SERVER['HTTP_HOST'].$REQUEST_URI;
$myself = $http.'://'.$server.$GLOBALS['REQUEST_URI'];
# supprimer la chaine de GET
$myself = preg_replace(',\?.*$,','', $myself);
......@@ -1054,29 +1053,22 @@ function spip_initialisation() {
$GLOBALS['flag_upload'] = (!$GLOBALS['flag_get_cfg_var'] ||
(get_cfg_var('upload_max_filesize') > 0));
//
// Sommes-nous dans l'empire du Mal ?
// (ou sous le signe du Pingouin, ascendant GNU ?)
//
if (strpos($_SERVER['SERVER_SOFTWARE'], '(Win') !== false)
define ('os_serveur', 'windows');
else define ('os_serveur', '');
//
// Infos sur le fichier courant
//
else
define ('os_serveur', '');
// Compatibilite avec serveurs ne fournissant pas $REQUEST_URI
if (!isset($GLOBALS['REQUEST_URI'])) {
if (isset($_SERVER['REQUEST_URI'])) {
$GLOBALS['REQUEST_URI'] = $_SERVER['REQUEST_URI'];
} else {
$GLOBALS['REQUEST_URI'] = $_SERVER['PHP_SELF'];
if ($_SERVER['QUERY_STRING']
AND !strpos($_SERVER['REQUEST_URI'], '?'))
$GLOBALS['REQUEST_URI'] .= '?'.$_SERVER['QUERY_STRING'];
}
if (isset($_SERVER['REQUEST_URI'])) {
$GLOBALS['REQUEST_URI'] = $_SERVER['REQUEST_URI'];
} else {
$GLOBALS['REQUEST_URI'] = $_SERVER['PHP_SELF'];
if ($_SERVER['QUERY_STRING']
AND !strpos($_SERVER['REQUEST_URI'], '?'))
$GLOBALS['REQUEST_URI'] .= '?'.$_SERVER['QUERY_STRING'];
}
//
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter