View Single Post
  #687  
Old 08-07-2003, 06:18 PM
sabret00the's Avatar
sabret00the sabret00the is offline
 
Join Date: Jan 2003
Location: London
Posts: 5,268
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
01-15-03 at 06:20 AM TECK said this in Post #61
The fix for [HIGH]online.php[/HIGH] file, to display nice links, is below.
There are 2 methods, the easy or the hard way.

METHOD 1 (easy)
FIND:
Code:
  $loc=preg_replace("/\?s=[a-z0-9]{32}(&)?/","?",$loc);
REPLACE WITH:
Code:
  $loc=preg_replace("/\?s=[a-z0-9]{32}(&)?/","?",$loc);
  $loc = preg_replace( '~archive/~' , 'forumdisplay.php?forumid=' , $loc );
  $loc = preg_replace( '~forumdisplay/f-~' , 'forumdisplay.php?forumid=' , $loc );
  $loc = preg_replace( '~showthread/t-~' , 'showthread.php?threadid=' , $loc );
  $loc = preg_replace( '~-p-[0-9]~' , '' , $loc );
  $loc = preg_replace( '~.html~' , '' , $loc );
METHOD 2 (cool way)
FIND:
Code:
    case 'spider':
      $userinfo[where] = "Search Engine Spider";
      break;
REPLACE WITH:
Code:
    case 'spider':
      $userinfo[where] = "Search Engine Spider";
      break;
    case 'archive':
      $userinfo[where] = "$bbtitle <b>Archive</b> <a href='archive/'>Main Index</a>";
      break;
    case 'archiveforumdisplay':
      if (!$forum[forumid][$userinfo[forumid]] or (!$forum[canview][$userinfo[forumid]] and $hideprivateforums)) {
        $userinfo[where] = "Viewing <b>Archive</b> Forum";
      } else {
        $userinfo[where] = "Viewing <b>Archive</b> Forum <a href='forumdisplay/f-$userinfo[forumid].html'>".$forum[forumid][$userinfo[forumid]]."</a>";
      }
      break;
    case 'archiveshowthread':
      if (!$thread[title][$userinfo[threadid]] or !$forum[canview][$thread[forumid][$userinfo[threadid]]] or (!$forum[canviewothers][$thread[forumid][$userinfo[threadid]]] and $thread[postuserid][$userinfo[threadid]] != $bbuserinfo[userid])) {
        $userinfo[where] = "Viewing <b>Archive</b> Thread";
      } else {
        $userinfo[where] = "Viewing <b>Archive</b> Thread <a href='showthread/t-$userinfo[threadid].html'>".$thread[title][$userinfo[threadid]]."</a>";
      }
      break;
FIND:
Code:
  $loc=preg_replace("/\?s=[a-z0-9]{32}(&)?/","?",$loc);
REPLACE WITH:
Code:
  $loc=preg_replace("/\?s=[a-z0-9]{32}(&)?/","?",$loc);
  $loc = preg_replace( '~archive/~' , 'archive.php' , $loc );
  $loc = preg_replace( '~forumdisplay/f-~' , 'archiveforumdisplay.php?forumid=' , $loc );
  $loc = preg_replace( '~showthread/t-~' , 'archiveshowthread.php?threadid=' , $loc );
  $loc = preg_replace( '~-p-[0-9]~' , '' , $loc );
  $loc = preg_replace( '~.html~' , '' , $loc );
FIND:
Code:
  case '/robots.txt':
    $userinfo[activity] = 'spider';
    break;
REPLACE WITH:
Code:
  case '/robots.txt':
    $userinfo[activity] = 'spider';
    break;
  case 'archive.php':
    $userinfo[activity] = 'archive';
    break;
  case 'archiveforumdisplay.php':
    $blowup = explode('=', $token1);
    $forumid = intval($blowup[1]);
    $forumids .= ",$forumid";
    $userinfo[activity] = 'archiveforumdisplay';
    $userinfo[forumid] = $forumid;
    break;
  case 'archiveshowthread.php':
    if (strstr($token1,'threadid')) {
      $blowup = explode('=', $token1);
      $threadid = intval($blowup[1]);
      $threadids .= ",$threadid";
      $userinfo[activity] = 'archiveshowthread';
      $userinfo[threadid] = $threadid;
    } else if (strstr($token2,'threadid')) {
      $blowup = explode('=', $token2);
      $threadid = intval($blowup[1]);
      $threadids .= ",$threadid";
      $userinfo[activity] = 'archiveshowthread';
      $userinfo[threadid] = $threadid;
    }
    break;
most useful post in this whole thing and it's not linked in the first post
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01089 seconds
  • Memory Usage 1,793KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (8)bbcode_code
  • (1)bbcode_quote
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete