ahora despues de actualizar a 1.4.11 baje la nueva version del google seo y subi todo, pero me tira un error con el functions.php que subo
--- functions.php 2009-11-29 16:04:36.000000000 +0100 +++ functions.php 2009-12-02 17:39:41.813958311 +0100 @@ -830,6 +830,16 @@ */ function multipage($count, $perpage, $page, $url) { + if(function_exists("google_seo_url_multipage")) + { + $newurl = google_seo_url_multipage($url); + + if($newurl) + { + $url = $newurl; + } + } + global $theme, $templates, $lang, $mybb; if($count <= $perpage) @@ -4196,6 +4206,16 @@ */ function get_profile_link($uid=0) { + if(function_exists("google_seo_url_profile")) + { + $link = google_seo_url_profile($uid); + + if($link) + { + return $link; + } + } + $link = str_replace("{uid}", $uid, PROFILE_URL); return htmlspecialchars_uni($link); } @@ -4208,6 +4228,16 @@ */ function get_announcement_link($aid=0) { + if(function_exists("google_seo_url_announcement")) + { + $link = google_seo_url_announcement($aid); + + if($link) + { + return $link; + } + } + $link = str_replace("{aid}", $aid, ANNOUNCEMENT_URL); return htmlspecialchars_uni($link); } @@ -4273,6 +4303,16 @@ */ function get_forum_link($fid, $page=0) { + if(function_exists("google_seo_url_forum")) + { + $link = google_seo_url_forum($fid, $page); + + if($link) + { + return $link; + } + } + if($page > 0) { $link = str_replace("{fid}", $fid, FORUM_URL_PAGED); @@ -4296,6 +4336,16 @@ */ function get_thread_link($tid, $page=0, $action='') { + if(function_exists("google_seo_url_thread")) + { + $link = google_seo_url_thread($tid, $page, $action); + + if($link) + { + return $link; + } + } + if($page > 1) { if($action) @@ -4335,6 +4385,16 @@ */ function get_post_link($pid, $tid=0) { + if(function_exists("google_seo_url_post")) + { + $link = google_seo_url_post($pid, $tid); + + if($link) + { + return $link; + } + } + if($tid > 0) { $link = str_replace("{tid}", $tid, THREAD_URL_POST); @@ -4356,6 +4416,16 @@ */ function get_event_link($eid) { + if(function_exists("google_seo_url_event")) + { + $link = google_seo_url_event($eid); + + if($link) + { + return $link; + } + } + $link = str_replace("{eid}", $eid, EVENT_URL); return htmlspecialchars_uni($link); } @@ -4371,6 +4441,16 @@ */ function get_calendar_link($calendar, $year=0, $month=0, $day=0) { + if(function_exists("google_seo_url_calendar")) + { + $link = google_seo_url_calendar($calendar, $year, $month, $day); + + if($link) + { + return $link; + } + } + if($day > 0) { $link = str_replace("{month}", $month, CALENDAR_URL_DAY); @@ -4409,6 +4489,16 @@ */ function get_calendar_week_link($calendar, $week) { + if(function_exists("google_seo_url_calendar_week")) + { + $link = google_seo_url_calendar_week($calendar, $week); + + if($link) + { + return $link; + } + } + if($week < 0) { $week = str_replace('-', "n", $week);
alguien tiene idea? jeje
eee hago triple post y me soba(? pude instalarlo ejejee era une stupidez ponia el htaccess en la raiz asi del dominio en vez de ponerlo en la carpeta donde tengo el foro xD . mil gracias por la ayuda prestada =B
Última modificación: 31 Dec, 2009, 6:06 pm por powerxd.