vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Member Archives (https://vborg.vbsupport.ru/forumdisplay.php?f=202)
-   -   Has this hack been mentioned? (https://vborg.vbsupport.ru/showthread.php?t=11361)

Wayne Luke 04-18-2001 04:27 AM

This is a major hack and involves rewritting a lot of code. While it could be done individually, you can't release or distribute this code without violating the license agreement....

Sorry.

cipap 11-13-2001 07:12 AM

Quote:

Originally posted by
Ok...

Forum1 databasename - forum1
Forum2 databasename - forum2

so far so good...

what I have done is go through all the *.php files on my forum2 messageboard and changed all instances of user to forum1.user usergroup to forum1.usergroup and userfield to forum1.userfield so that forum 2 reads all user related stuff from the forum1 user, usergroup and userfield tables.

It seems to be working.

Anyone see any problems with this?

i still don't get you.. which php files needed to be edited?

cipap 11-21-2001 07:06 AM

Quote:

Originally posted by
forgot to tell ya...

I hade to add the following modifications to forum2 functions.php


added:
PHP Code:

if ($idname=='user') {
$idnameold 'user';      
$idname 'forum1.user';
} else {
$idnameold $idname;


if (
$idname=='avatar') {
$idnameold 'avatar';      
$idname 'forum1.avatar';


after:

PHP Code:

if (!isset($id) or $id==or $id=="") {
    if (
$alert) {  // show alert?
      
eval("standarderror(\"".gettemplate('error_noid')."\");");
      exit;
    }
  } else {
    
$id=intval($id);
    if (
$selall==1) {
      
$selid '*';
    } else {
      
$selid $idname.'id';
    } 

then changed

PHP Code:

if ($idname=='thread' and $threadcache["$id"]) {
      if (
$selall!=1) {
        return 
$threadcache["$id"]["$selid"];
      } else {
        return 
$threadcache["$id"];
      }
    } else if (
$idname=='forum' and isset($forumcache["$id"]) and $forumcache["$id"][forumid]==$id) {
      if (
$selall!=1) {
        return 
$forumcache["$id"][forumid];
      } else {
        return 
$forumcache["$id"];
      }
    } else if (!
$check=$DB_site->query_first("SELECT $selid FROM $idname WHERE $idname"."id=$id")) {
      if (
$alert) { // show alert?
        
eval("standarderror(\"".gettemplate('error_invalidid')."\");");
        exit;
      } 

to:

PHP Code:

if ($idnameold=='thread' and $threadcache["$id"]) {
      if (
$selall!=1) {
        return 
$threadcache["$id"]["$selid"];
      } else {
        return 
$threadcache["$id"];
      }
    } else if (
$idnameold=='forum' and isset($forumcache["$id"]) and $forumcache["$id"][forumid]==$id) {
      if (
$selall!=1) {
        return 
$forumcache["$id"][forumid];
      } else {
        return 
$forumcache["$id"];
      }
    } else if (!
$check=$DB_site->query_first("SELECT $selid FROM $idname WHERE $idnameold"."id=$id")) {
      if (
$alert) { // show alert?
        
eval("standarderror(\"".gettemplate('error_invalidid')."\");");
        exit;
      } 


tried that, doesn't work for me... :(


All times are GMT. The time now is 07:35 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01095 seconds
  • Memory Usage 1,766KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_php_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (3)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete