Ipb Help Topic

Discussion in 'Gaming' started by Andrew, Jun 6, 2005.

  1. -John

    -John Well-Known Member

    Age:
    34
    Posts:
    790
    Likes Received:
    0
    Joined:
    Dec 3, 2004
    Location:
    Illionois
    ahh okay, I thought you were talking about the actual board statistics thing which shows the active members :rofl:

    well i looked around invisionize for you and I even googled it but I didnt find anything, the mod you saw at my forum was for IPB 1.3.

    im not sure if anyones done it for 2.1.x but it will be done soon however, unless its already out there but i just didnt find it :D

    Sorry for double post of the same thing, there was a HUGE lag spike on the forum
     
  2. Pinball Wizard

    Pinball Wizard Well-Known Member

    Posts:
    430
    Likes Received:
    0
    Joined:
    Aug 7, 2005
    Is it possible to back up a IF member list then import it to ipb?
     
  3. -John

    -John Well-Known Member

    Age:
    34
    Posts:
    790
    Likes Received:
    0
    Joined:
    Dec 3, 2004
    Location:
    Illionois
    Nope, that sort of thing doesnt work cus each board system is pretty different, expecially Invisionfree from IPB 2.1.x, lol :D
     
  4. Pinball Wizard

    Pinball Wizard Well-Known Member

    Posts:
    430
    Likes Received:
    0
    Joined:
    Aug 7, 2005
    Oh ok, can someone tell me how to install perfect points? I got stuck at one particular part in the installation guide

    edit: another question, at the bttom where it shoudl give a picture of what the new posts look like and stuff, it just shows the box with the x
     
  5. Equivalent Exchange

    Equivalent Exchange Well-Known Member

    Posts:
    1,466
    Likes Received:
    0
    Joined:
    Nov 9, 2005
    Not exactly

    For a fee, invisionfree will create a backup of your boards databse and then convert it to an IPB format, which you can then use with an IPB forum.
     
  6. desolution

    desolution Well-Known Member

    Age:
    33
    Posts:
    733
    Likes Received:
    0
    Joined:
    Nov 9, 2005
    Actually that is possible, but you will have to be doing alot of sql, table, and member editing.
     
  7. Pinball Wizard

    Pinball Wizard Well-Known Member

    Posts:
    430
    Likes Received:
    0
    Joined:
    Aug 7, 2005
    Oh, anyway, im having a few problems. First problem=I dont have a new poll button. I went to post a poll, but the only button is new thread. Second of all, this is at the bottom instead of when it should say new posts and stuff:
    [​IMG]

    AND I NEED A LOT OF HELP INSTALLING PERFECT POINTS SYSTEM!

    edit: ok it also shows the little red x's where it should say quote, img, http:// and stuff

    EDIT AGAIN: YOU HAVE TO REFRESH THE PAGE A FEW TIMES TO GET ALL THE CODE BITS WHEN REGISTERING? Anyway to fix this
     
  8. -John

    -John Well-Known Member

    Age:
    34
    Posts:
    790
    Likes Received:
    0
    Joined:
    Dec 3, 2004
    Location:
    Illionois
    He was talking about just taking the invisionfree mod and putting it on his forum, not if its possible to mod it to work on 2.1.x (atleast thats what I thought)
     
  9. mekkio

    mekkio Well-Known Member

    Posts:
    90
    Likes Received:
    0
    Joined:
    Sep 30, 2005
    The volicity of the raindrop can only ever be 3.8km ^_^
     
  10. Dpom

    Dpom Well-Known Member

    Age:
    35
    Posts:
    2,476
    Likes Received:
    0
    Joined:
    Mar 29, 2005
    Perfect Points Sucks dont get anything from them most of the mods suck too.


    I have a question.
    Does anyone have the mod Gamerenders is using to Put adds in or kno what it is?
     
  11. XMasterX

    XMasterX Well-Known Member

    Age:
    40
    Posts:
    5,336
    Likes Received:
    0
    Joined:
    Aug 1, 2005
    Location:
    Wisconsin, USA
    did you import the skin images for this skin, and selected the skin to use that image set?
     
  12. -John

    -John Well-Known Member

    Age:
    34
    Posts:
    790
    Likes Received:
    0
    Joined:
    Dec 3, 2004
    Location:
    Illionois
    Are you talking about how they have those ads up there?
     
  13. Dpom

    Dpom Well-Known Member

    Age:
    35
    Posts:
    2,476
    Likes Received:
    0
    Joined:
    Mar 29, 2005
    ya i got llama pmed me about it. thx tho
     
  14. JeremyM

    JeremyM Well-Known Member

    Age:
    37
    Posts:
    554
    Likes Received:
    0
    Joined:
    Oct 10, 2005
    I'm having trouble with IBProArcade for IPB 2.4

    I installed it and recieve the following error...

    Can be viewed here.

    Here's the coding within a few lines of the suggested line number in the error in my ipsclass.php file.

    Code:
      //-----------------------------------------
      // Not running safemode skins?
      //-----------------------------------------
      
      if ( $this->vars['safe_mode_skins'] == 0 AND $this->vars['safe_mode'] == 0 )
      {
      	//-----------------------------------------
      	// Simply require and return
      	//-----------------------------------------
      	
      	if ( $name != 'skin_global')
      	{
        if ( ! in_array( $skin_global_name, $this->loaded_templates ) )
        {
        	require_once( CACHE_PATH."cache/skin_cache/cacheid_".$id."/skin_global.php" );
        	
        	$this->compiled_templates['skin_global']           =  new $skin_global_name();
        	$this->compiled_templates['skin_global']->ipsclass =& $this;
        	
        	# Add to loaded templates
        	$this->loaded_templates[ $skin_global_name ] = $skin_global_name;
        }
        
        require_once( CACHE_PATH."cache/skin_cache/cacheid_".$id."/".$name.".php" );
        
        $this->compiled_templates[ $name ]           =  new $full_name();
        $this->compiled_templates[ $name ]->ipsclass =& $this;
        
        # Add to loaded templates
        $this->loaded_templates[ $full_name ] = $full_name;
      	}
      	else
      	{
        if ( $name == 'skin_global' )
        {
        	require_once( CACHE_PATH."cache/skin_cache/cacheid_".$id."/skin_global.php" );
        	
        	$this->compiled_templates['skin_global']           =  new $skin_global_name();
        	$this->compiled_templates['skin_global']->ipsclass =& $this;
        	
        	# Add to loaded templates
        	$this->loaded_templates[ $skin_global_name ] = $skin_global_name;
        	
        	return;
        }
        else
        {
        	require_once( CACHE_PATH."cache/skin_cache/cacheid_".$id."/".$name.".php" );
        	$this->compiled_templates[ $name ]           =  new $full_name();
        	$this->compiled_templates[ $name ]->ipsclass =& $this;
        	
        	# Add to loaded templates
        	$this->loaded_templates[ $full_name ] = $full_name;
        }
      	}
      }

    There was no file named skin_arcade_4 in the Dload from invisionize.
     
  15. Equivalent Exchange

    Equivalent Exchange Well-Known Member

    Posts:
    1,466
    Likes Received:
    0
    Joined:
    Nov 9, 2005
    have you made sure to drag the skin files into all the skin folders? certain files may need to go into more than one folder.

    What version of IPB do you have?
     

Share This Page