Jump to content
InvisionCommunity.de - Der Deutsche Invision Community Support

Jiggy

Mitglied
  • Content count

    28
  • Joined

  • Last visited

Posts posted by Jiggy


  1. Hi

    ich habe den Gallery Mod von Invision Installiert (erfolgreich)

    Leider Kann man die Gallery nur nutzen wenn man den Skin Save mode Einschaltet, weil er die Skin Dateien aus der Datenbank holt.

    Gibs eine möglichkeit den Gallery mod in Save Mode "OFF" zu betreiben

    ich habe nen haufen mods Installiert wie z.B. das Dragon Portal das nur leuft wenn der Skin mode OFF ist.

    hat einer vieleicht die Skin dateien als PHP irgendwo, die er mir zur verfügung stellen kann :(


  2. Hi Jungs weiß jemand wie der Code lauten muss damit der Mod "Anzeige der Userranks" in IPB 2.0 leuft

    der mod greift direct in das Root verzeichnis der Domian zu aber wie ihr ja alle wisst muss er auf das verzeichnis:

    'style_images/{img_dir}/folder_team_icons' zugreifen

    $idx = new mod_showRanks_func; 
    
    
    class mod_showRanks_func
    
    { 
    
    var $html; 
    
    var $output; 
    
    
    
    function mod_showRanks_func()
    
    {
    
    	global $print, $ibforums, $std, $DB;
    
    	$ibforums->lang = $std->load_words($ibforums->lang, 'mod_showRanks_lang', $ibforums->lang_id );
    
    	$this->html =  $std->load_template('mod_showRanks_skin');
    
    
    
    	$this->output = $this->html->table_header();  
    
    
    	$DB->query("SELECT * FROM ibf_titles ORDER BY posts");
    
    	while($s = $DB->fetch_row()){
    
      $stars = "";
    
      // if the entry is numeric, show the pipes:
    
      if(is_numeric($s[pips])){
    
        for($i=1;$i<=$s[pips];$i++){
    
        $stars .= "<img src='".$ibforums->vars['img_url']."/pip.gif' border=0>";
    
               }
    
             }
    
             // if it isn´t numeric, it should be a filename, so show the image: 
    
             else{
    
               $stars = "<img src='{$ibforums->vars['TEAM_ICON_URL']}/$s[pips]' border='0'>";
    
               }
    
      $rank = $s[title];  
    
    	$this->output .= $this->html->basic_html($s[posts], $stars, $rank); 
    
    	} 
    
    
    	$this->output .= $this->html->table_footer(); 
    
    
    	$print->add_output("$this->output");
    
    	$print->do_output( array( 'TITLE' => $ibforums->lang['page_title'], 'JS' => 0, NAV => array( $ibforums->lang['page_title'] ) ) );
    
    } 
    
    } 
    
    
    ?>


  3. :blink:

    habe es nach eurer anweisung gemacht aber leider kein erfolg

    beim Rebuild sagt er:

    Skin Set Caches Rebuilt (id: 2)
    
    Rebuilding Macros for set IPB Default Skin...
    
    Done.... (Macro ID: 2)...
    
    Rebuilding CSS for set IPB Default Skin...
    
    Rebuilding css file for css_2...
    
    Rebuilding HTML templates cache for set IPB Default Skin...
    
    Done HTML templates rebuild... (id: 2)
    
    Rebuilding wrappers cache for set IPB Default Skin...
    
    Done wrapper rebuild... (id: 2)
    
    Rebuilding the skin set ID relationship cache...

    ich finde auch nigerswo die datei skin_gallery_cats.php


  4. Hi,

    habe beides installiert :D

    aber wenn ich auf die Gallery zugreifen will sagt er:

    IPB TEMPLATE ERROR: Could not load the required template. 
    
    
    First, try and remove any custom skin settings by clicking here 
    
    
    Then, please visit your Admin Control Panel to repair this template. 
    
    
    Error: load_template(./skin_cache/cacheid_2/skin_gallery_cats.php): failed to open stream: No such file or directory

    wo mache ich den Repair des Templates

×