Pages: 1 2
Ceci a été ajouté dans le fichier config_default.inc.php
// home_page : relative url of the homepage. Empty by default. // It points to the index of the gallery. // This parameter is used if home page is not index.php of the gallery. // We suggest avoid the names "index.htm" or "index.html" if you set $conf['php_extension_in_urls'] to false. $conf['home_page'] = '';
Hors ligne
Super ça fonctionne impeccablement bien :o)
Est'il possible, toujours au niveau du config.inc.php de masque cette fonction ? pour garder le fonctionnement de 2.0.9 (voir image jointe)
Merci pour ta réponse.
Seb
Hors ligne
Oui, tu peux écrire un plugin
Hors ligne
laurent.duretz a écrit:
Oui, tu peux écrire un plugin
Je comprend le seul problème c'est que je ne suis pas un développeur dans l'âme lollll je suis plutôt un utilisateur ++ donc ça veux dire que je dois me calquer à ce fonctionnement :o(
Ok merci pour l'info.
Seb
Dernière modification par SNF69 (2010-04-16 12:16:37)
Hors ligne
laurent.duretz a écrit:
Ceci a été ajouté dans le fichier config_default.inc.php
Code:
// home_page : relative url of the homepage. Empty by default. // It points to the index of the gallery. // This parameter is used if home page is not index.php of the gallery. // We suggest avoid the names "index.htm" or "index.html" if you set $conf['php_extension_in_urls'] to false. $conf['home_page'] = '';
ça c'est super !
n'étant pas suffisement expert, est-ce qu'il n'y a pas des doublons
- avec le lien défini dans l'admin (url de la galerie, voir image)
- avec les options de redirection
// random_index_redirect: list of 'internal' links to use when no section is defined on index.php.
// An example is the best than a long explanation :
//
// for each link is associated a php condition
// '' condition is equivalent to 'return true;'
// $conf['random_index_redirect'] = array(
// PHPWG_ROOT_PATH.'index.php?/best_rated' => 'return true;',
// PHPWG_ROOT_PATH.'index.php?/recent_pics' => 'return is_a_guest();',
// PHPWG_ROOT_PATH.'random.php' => '',
// PHPWG_ROOT_PATH.'index.php?/categories' => '',
// );
$conf['random_index_redirect'] = array();
Hors ligne
laurent.duretz a écrit:
Ceci a été ajouté dans le fichier config_default.inc.php
Code:
// home_page : relative url of the homepage. Empty by default. // It points to the index of the gallery. // This parameter is used if home page is not index.php of the gallery. // We suggest avoid the names "index.htm" or "index.html" if you set $conf['php_extension_in_urls'] to false. $conf['home_page'] = '';
Je dois être un peu couillon. Etant dans une configuration analogue à SNF69 (sous 2.0.10) et ayant un retour "Accueil" vers ma page de pré-accueil, j'ai rajouté à mon config_local.inc.php la ligne suivante :
$conf['home_page'] = 'http://www.lesphotosdejean.fr/index.php';
Et j'obtiens un beau 404
Hors ligne
Neutre a écrit:
Je dois être un peu couillon.
Et la réponse est ... oui.
Si j'avais regardé de plus près la page 404, j'aurais compris plus vite que la bonne syntaxe était
$conf['home_page'] = 'index.php';
Désolé pour le dérangement !
Hors ligne
Pages: 1 2