Ancien Forum Mybb ----> Nouvelle hébergeur - Version imprimable +- MyBB.support, le portail francophone de MyBB (https://mybb.fr) +-- Forum : MyBB.fr (https://mybb.fr/forum-1.html) +--- Forum : Support (https://mybb.fr/forum-5.html) +--- Sujet : Ancien Forum Mybb ----> Nouvelle hébergeur (/thread-1802.html) Pages :
1
2
|
RE: Ancien Forum Mybb ----> Nouvelle hébergeur - Meuhho - 30-07-2009 Par contre est-ce qu'il faudra changer quoi que se soit dans certains fichiers comme mes anciennes Cordonnées comme le lien du site, Adresse serveur... ? Ou l'installation applique tout cela ? édite 1 : Code PHP : plates, $forumpass; $pid = intval($pid); if(!$permissions) { $permissions = $mybb->usergroup; } if(!is_array($forum_cache)) { cache_forums(); } if(!is_array($permissioncache)) { $permissioncache = forum_permissions(); } foreach($forum_cache as $fid => $forum) { if($permissioncache[$forum['fid']]) { $perms = $permissioncache[$forum['fid']]; } else { $perms = $mybb->usergroup; } $pwverified = 1; if($forum['password'] != "") { if($mybb->cookies['forumpass'][$forum['fid']] != md5($mybb->user['uid'].$forum['password'])) { $pwverified = 0; } } if($perms['canview'] == 0 || $pwverified == 0 || ($only_readable_threads == true && $perms['canviewthreads'] == 0)) { if($unviewableforums) { $unviewableforums .= ","; } $unviewableforums .= "'".$forum['fid']."'"; } } return $unviewableforums; } /** * Fixes mktime for dates earlier than 1970 * * @param string The date format to use * @param int The year of the date * @return string The correct date format */ function fix_mktime($format, $year) { // Our little work around for the date < 1970 thing. // -2 idea provided by Matt Light (http://www.mephex.com) $format = str_replace("Y", $year, $format); $format = str_replace("y", my_substr($year, -2), $format); return $format; } /** * Build the breadcrumb navigation trail from the specified items * * @return The formatted breadcrumb navigation trail */ function build_breadcrumb() { global $nav, $navbits, $templates, $theme, $lang; eval("\$navsep = \"".$templates->get("nav_sep")."\";"); if(is_array($navbits)) { reset($navbits); foreach($navbits as $key => $navbit) { if(isset($navbits[$key+1])) { if(isset($navbits[$key+2])) { $sep = $navsep; } else { $sep = ""; } eval("\$nav .= \"".$templates->get("nav_bit")."\";"); } } } $navsize = count($navbits); $navbit = $navbits[$navsize-1]; if($nav) { eval("\$activesep = \"".$templates->get("nav_sep_active")."\";"); } eval("\$activebit = \"".$templates->get("nav_bit_active")."\";"); eval("\$donenav = \"".$templates->get("nav")."\";"); return $donenav; } /** * Add a breadcrumb menu item to the list. * * @param string The name of the item to add * @param string The URL of the item to add */ function add_breadcrumb($name, $url="") { global $navbits; $navsize = count($navbits); $navbits[$navsize]['name'] = $name; $navbits[$navsize]['url'] = $url; } /** * Build the forum breadcrumb nagiation (the navigation to a specific forum including all parent forums) * * @param int The forum ID to build the navigation for */ function RE: Ancien Forum Mybb ----> Nouvelle hébergeur - Kiwi - 30-07-2009 tu est chez qui OVH power-heberg free.fr ? RE: Ancien Forum Mybb ----> Nouvelle hébergeur - Meuhho - 04-08-2009 Aucun des trois ^^ Idoo RE: Ancien Forum Mybb ----> Nouvelle hébergeur - Kiwi - 05-08-2009 change le RE: Ancien Forum Mybb ----> Nouvelle hébergeur - Meuhho - 07-08-2009 Croyez-moi les erreurs que je vous est citées ci-dessus sont semblable pour tous les hébergeurs... D'autres suggestions ? |