Gestion des Menus
La partie Gestion des Menus ne fonctionne pas !
Support Général
horn Membre non connecté
-
Modérateur
- Voir le profil du membre horn
- Inscrit le : 31/12/2007
- Site internet
- Groupes :
-
Equipe Historique
Reprise du message précédent
Ca marche parfaitement sur une installation toute fraîche, je viens d'essayer.peux tu me dire si tu est sur windows / linux / mac et aller sur /admin/admin_system_report.php et me coller ce qui apparaît dans la zone de texte dans ce topic.
Soyez polis, pas de langage SMS et soignez votre orthographe, merci.
mehdig Membre non connecté
Booster Bazooka
-
Booster Bazooka
- Voir le profil du membre mehdig
- Inscrit le : 24/11/2009
- Site internet
Code PHP :
<?php /*################################################## * admin_system_report.php * ------------------- * begin : July 14 2008 * copyright : (C) 2008 Sautel Benoit * email : ben.popeye@phpboost.com * * * ################################################### * * 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 2 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, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ###################################################*/ require_once('../admin/admin_begin.php'); define('TITLE', $LANG['administration']); require_once('../admin/admin_header.php'); $template = new Template('admin/admin_system_report.tpl'); $template->assign_vars(array( 'L_YES' => $LANG['yes'], 'L_NO' => $LANG['no'], 'L_UNKNOWN' => $LANG['unknown'], 'L_SYSTEM_REPORT' => $LANG['system_report'], 'L_SERVER' => $LANG['server'], 'L_PHPINFO' => $LANG['phpinfo'], 'L_PHP_VERSION' => $LANG['php_version'], 'L_DBMS_VERSION' => $LANG['dbms_version'], 'L_GD_LIBRARY' => $LANG['dg_library'], 'L_URL_REWRITING' => $LANG['url_rewriting'], 'L_REGISTER_GLOBALS_OPTION' => $LANG['register_globals_option'], 'L_SERVER_URL' => $LANG['serv_name'], 'L_SITE_PATH' => $LANG['serv_path'], 'L_PHPBOOST_CONFIG' => $LANG['phpboost_config'], 'L_KERNEL_VERSION' => $LANG['kernel_version'], 'L_DEFAULT_THEME' => $LANG['default_theme'], 'L_DEFAULT_LANG' => $LANG['default_language'], 'L_DEFAULT_EDITOR' => $LANG['choose_editor'], 'L_START_PAGE' => $LANG['start_page'], 'L_OUTPUT_GZ' => $LANG['output_gz'], 'L_COOKIE_NAME' => $LANG['cookie_name'], 'L_SESSION_LENGTH' => $LANG['session_time'], 'L_SESSION_GUEST_LENGTH' => $LANG['session invit'], 'L_DIRECTORIES_AUTH' => $LANG['directories_auth'], 'L_SUMMERIZATION' => $LANG['system_report_summerization'], 'L_SUMMERIZATION_EXPLAIN' => $LANG['system_report_summerization_explain'] )); //Temp variables $temp_var = function_exists('apache_get_modules') ? apache_get_modules() : array(); $server_path = !empty($_SERVER['PHP_SELF']) ? $_SERVER['PHP_SELF'] : getenv('PHP_SELF'); if (!$server_path) $server_path = !empty($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : getenv('REQUEST_URI'); $server_path = trim(str_replace('/admin', '', dirname($server_path))); $server_name = 'http://' . (!empty($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : getenv('HTTP_HOST')); $lang_ini_file = load_ini_file('../lang/', get_ulang()); $template_ini_file = load_ini_file('../templates/' . get_utheme() . '/config/', get_ulang()); $directories_summerization = ''; $directories_list = array('/', '/cache', '/cache/backup', '/cache/syndication/', '/cache/tpl', '/images/avatars', '/images/group', '/images/maths', '/images/smileys', '/lang', '/menus', '/templates', '/upload'); foreach ($directories_list as $dir) { $dir_status = is_dir('..' . $dir) && is_writable('..' . $dir); $template->assign_block_vars('directories', array( 'NAME' => $dir, 'C_AUTH_DIR' => $dir_status )); $directories_summerization .= $dir . str_repeat(' ', 25 - strlen($dir)) . ": " . (int)$dir_status . " "; } $summerization = "---------------------------------System report--------------------------------- -----------------------------generated by PHPBoost----------------------------- SERVER CONFIGURATION----------------------------------------------------------- php version : " . phpversion() . " dbms version : " . $Sql->get_dbms_version() . " gd library : " . (int)@extension_loaded('gd') . " url rewriting : " . (function_exists('apache_get_modules') ? (int)!empty($temp_var[5]) : "?") . " register globals : " . (int)(@ini_get('register_globals') == CONCAT('1' , strtolower)(@ini_get('register_globals')) == 'on') . " server url : " . $server_name . " site path : " . $server_path . " PHPBOOST CONFIGURATION--------------------------------------------------------- phpboost version : " . phpboost_version() . " server url : " . $CONFIG['server_name'] . " site path : " . $CONFIG['server_path'] . " default theme : " . $template_ini_file['name'] . " default language : " . get_ulang() . " default editor : " . $CONFIG['editor'] . " start page : " . $CONFIG['start_page'] . " url rewriting : " . $CONFIG['rewrite'] . " output gz : " . $CONFIG['ob_gzhandler'] . " session cookie name : " . $CONFIG['site_cookie'] . " session length : " . $CONFIG['site_session'] . " guest session length : " . $CONFIG['site_session_invit'] . " DIRECTORIES AUTHORIZATIONS----------------------------------------------------- " . $directories_summerization; $template->assign_vars(array( 'PHP_VERSION' => phpversion(), 'DBMS_VERSION' => $Sql->get_dbms_version(), 'C_SERVER_GD_LIBRARY' => @extension_loaded('gd'), 'C_URL_REWRITING_KNOWN' => function_exists('apache_get_modules'), 'C_SERVER_URL_REWRITING' => function_exists('apache_get_modules') ? !empty($temp_var[5]) : false, 'C_REGISTER_GLOBALS' => @ini_get('register_globals') == CONCAT('1' , strtolower)(@ini_get('register_globals')) == 'on', 'SERV_SERV_URL' => $server_name, 'SERV_SITE_PATH' => $server_path, 'KERNEL_VERSION' => phpboost_version(), 'KERNEL_SERV_URL' => $CONFIG['server_name'], 'KERNEL_SITE_PATH' => $CONFIG['server_path'], 'KERNEL_DEFAULT_THEME' => $template_ini_file['name'], 'KERNEL_DEFAULT_LANGUAGE' => $lang_ini_file['name'], 'KERNEL_DEFAULT_EDITOR' => $CONFIG['editor'] == 'tinymce' ? 'TinyMCE' : 'BBCode', 'KERNEL_START_PAGE' => $CONFIG['start_page'], 'C_KERNEL_URL_REWRITING' => (bool)$CONFIG['rewrite'], 'C_KERNEL_OUTPUT_GZ' => (bool)$CONFIG['ob_gzhandler'], 'COOKIE_NAME' => $CONFIG['site_cookie'], 'SESSION_LENGTH' => $CONFIG['site_session'], 'SESSION_LENGTH_GUEST' => $CONFIG['site_session_invit'], 'SUMMERIZATION' => $summerization )); $template->parse(); require_once('../admin/admin_footer.php'); ?>
horn Membre non connecté
-
Modérateur
- Voir le profil du membre horn
- Inscrit le : 31/12/2007
- Site internet
- Groupes :
-
Equipe Historique
Soyez polis, pas de langage SMS et soignez votre orthographe, merci.
mehdig Membre non connecté
Booster Bazooka
-
Booster Bazooka
- Voir le profil du membre mehdig
- Inscrit le : 24/11/2009
- Site internet
Code TEXT :
---------------------------------System report--------------------------------- -----------------------------generated by PHPBoost----------------------------- SERVER CONFIGURATION----------------------------------------------------------- php version : 4.4.3-dev dbms version : MySQL 5.0.83 gd library : 1 url rewriting : ? register globals : 1 server url : http://make.site.free.fr site path : PHPBOOST CONFIGURATION--------------------------------------------------------- phpboost version : 3.0.5 server url : http://make.site.free.fr site path : default theme : Cameleon default language : french default editor : bbcode start page : /news/news.php url rewriting : 0 output gz : 0 session cookie name : session session length : 3600 guest session length : 300 DIRECTORIES AUTHORIZATIONS----------------------------------------------------- / : 1 /cache : 1 /cache/backup : 1 /cache/syndication/ : 1 /cache/tpl : 1 /images/avatars : 1 /images/group : 1 /images/maths : 1 /images/smileys : 1 /lang : 1 /menus : 1 /templates : 1 /upload : 1
mehdig Membre non connecté
Booster Bazooka
-
Booster Bazooka
- Voir le profil du membre mehdig
- Inscrit le : 24/11/2009
- Site internet
horn Membre non connecté
-
Modérateur
- Voir le profil du membre horn
- Inscrit le : 31/12/2007
- Site internet
- Groupes :
-
Equipe Historique
En tout cas, passe à une version plus récente de PHP sur free. Il suffit dans admin -> configuration -> configuration de mettre
Code HTACCESS :
dans la zone de texte du htaccess.php 1
Ensuite recommence la manip et dis moi si ça bug toujours
Soyez polis, pas de langage SMS et soignez votre orthographe, merci.
mehdig Membre non connecté
Booster Bazooka
-
Booster Bazooka
- Voir le profil du membre mehdig
- Inscrit le : 24/11/2009
- Site internet
horn Membre non connecté
-
Modérateur
- Voir le profil du membre horn
- Inscrit le : 31/12/2007
- Site internet
- Groupes :
-
Equipe Historique
Soyez polis, pas de langage SMS et soignez votre orthographe, merci.
mehdig Membre non connecté
Booster Bazooka
-
Booster Bazooka
- Voir le profil du membre mehdig
- Inscrit le : 24/11/2009
- Site internet
Code TEXT :
---------------------------------System report--------------------------------- -----------------------------generated by PHPBoost----------------------------- SERVER CONFIGURATION----------------------------------------------------------- php version : 5.1.3RC4-dev dbms version : MySQL 5.0.83 gd library : 1 url rewriting : ? register globals : 0 server url : http://make.site.free.fr site path : PHPBOOST CONFIGURATION--------------------------------------------------------- phpboost version : 3.0.5 server url : http://make.site.free.fr site path : default theme : Cameleon default language : french default editor : bbcode start page : /news/news.php url rewriting : 0 output gz : 1 session cookie name : session session length : 3600 guest session length : 300 DIRECTORIES AUTHORIZATIONS----------------------------------------------------- / : 1 /cache : 1 /cache/backup : 1 /cache/syndication/ : 1 /cache/tpl : 1 /images/avatars : 1 /images/group : 1 /images/maths : 1 /images/smileys : 1 /lang : 1 /menus : 1 /templates : 1 /upload : 1
ben.popeye Membre non connecté
-
Modérateur
- Voir le profil du membre ben.popeye
- Inscrit le : 04/08/2005
- Site internet
- Groupes :
-
Equipe Historique
Un problème, une question ? Cherchez dans la FAQ ou la documentation. Si vous ne trouvez pas la réponse, demandez du support sur le forum.
Bjarne Stroustrup, inventeur du C++ :"There are two ways to write error-free programs; only the third works."
mehdig Membre non connecté
Booster Bazooka
-
Booster Bazooka
- Voir le profil du membre mehdig
- Inscrit le : 24/11/2009
- Site internet
horn Membre non connecté
-
Modérateur
- Voir le profil du membre horn
- Inscrit le : 31/12/2007
- Site internet
- Groupes :
-
Equipe Historique
mehdig :En local mais j'ai repris les même fichiers qu'il y avait sur le serveur et je les ai mis en local ...Voilà ce que sa donne
?
Tes données de configurations indiquent que tu es chez free, donc pas en local.
Fait une vraie installation en locale en passant par le script d'installation de la version téléchargée ici : http://www.phpboost.com/download/download-111+phpboost-3-0-complete.php et met le menu que je t'ai donné.
Parce que là, si il y a un problème sur ton site sur free, ben t'auras le même en local puisque tu risques fort d'être redirigé chez free.
Soyez polis, pas de langage SMS et soignez votre orthographe, merci.
Ptithom Membre non connecté
-
Modérateur
- Voir le profil du membre Ptithom
- Inscrit le : 07/11/2006
- Site internet
- Groupes :
-
Equipe Historique
Toujours OSER, savoir parfois CEDER, mais jamais RENONCER!
Mes sites : http://www.leschinchillas.org / http://www.chateau-de-lastours.fr
Mes sites : http://www.leschinchillas.org / http://www.chateau-de-lastours.fr
Répondre
Vous n'êtes pas autorisé à écrire dans cette catégorie