Text automatically translated from: German to: Korean
Translated text
안녕하세요,

추가의 업데이 트하고 모든 설정 후, 포럼의 주제는 더 이상 가정입니다, 그리고 사이드바 forumdisplay은 이동할 수 있습니다. 페이지가 하얀 숙박 및 주소 표시줄에있는 링크는 다음과 같이 :

사이드바에서 전화 :
# post1027을 http://www.kambodschaforum.com/news/....html

포럼 포럼 홈 목록에서 전화 걸기 :
http://www.kambodschaforum.com/showt...=1027 # post1027

vBulletin 통합 파트 2로 변경 이유

Code:
# (Required) SEO links translation integration - part 2

   1. Download from server file FORUM_ROOT/vbseo/includes/functions_vbseo_url.php
   2. Open it in any text editor and find:
      $text = strtr($text, $trarr_table);
   3. REPLACE it with this code:

      if (false !== strpos($text, '[langtitle=')) {
      $text = strtr($text, $GLOBALS['vbet_custom_char_replacement']);
      if (vB_Template_Runtime::fetchStyleVar('charset') != 'utf-8') {
      $text = preg_replace('/&#([0-9]+);/esiU', 'convert_int_to_utf8(\'\\1\')', $text);
      }
      } else {
      $text = strtr($text, $trarr_table);
      }

   4. Find:
      header ("Location: $fulluri");
   5. PUT BEFORE it this code:

      if (isset($_REQUEST['language'])) {
      require_once(DIR. '/includes/vbenterprisetranslator_functions_url_tracking.php');
      $fulluri = vbet_createURLForAddressNoReplace($_REQUEST['language'], $fulluri);		
      }

   6. Save file and upload it to server, overwriting the old one.
VBSEO 버전 : 3.6.0
Vbulletin 버전 : 4.1.3

많은 감사
Original text