phpBB2.de Forum Index  
[netclusive - internet broadcasting]
 FAQ  •  Search  •  Download  •  Bookmarks  •  Memberlist  •  Usergroups   •  Register  •  Profile  •  Log in to check your private messages  •  Log in
 
        
 
        
 

LinkLift

View next topic
View previous topic

This forum is locked: you cannot post, reply to, or edit topics.This topic is locked: you cannot edit posts or make replies.
Author Message
baz-x
phpBB2.de User
phpBB2.de User



Joined: 09 Apr 2003
Posts: 663

PostPosted: Tue 26 Oct, 2004 23:07 Reply with quoteBack to top 

Since a lot of user are asking the (same) question i decided to ask oc5id to post his fix, so here we go:

OPEN: includes/functions_jr_admin.php

FIND:
PHP:
<?php //Read all the modules 
   
$setmodules 1
   
$dir = @opendir($phpbb_root_path.JR_ADMIN_DIR); 
   
$pattern "/^admin_.+\.$phpEx$/"
   while ((
$file = @readdir($dir)) !== false
   { 
      if (
preg_match($pattern$file)) 
      { 
         include(
$phpbb_root_path.JR_ADMIN_DIR.$file); 
      } 
   } 


IN LINE FIND:
PHP:
<?php include($phpbb_root_path.JR_ADMIN_DIR.$file); 


REPLACE WITH:
PHP:
<?php include_once($phpbb_root_path.JR_ADMIN_DIR.$file); 


FIND:
PHP:
<?php jr_admin_include_all_lang_files(); 


REPLACE WITH:
PHP:
<?php //      jr_admin_include_all_lang_files(); 


OPEN: /admin/admin_jr_admin.php

FIND:
Code:
 <?php


AFTER ADD:
PHP:
<?php if (defined('FUNCTIONS_JR_ADMIN_PHP'))
{
    return;
}

define ('FUNCTIONS_JR_ADMIN_PHP'true); 


Thanks to oc5id for his fix.

_________________
Currently working on: Nickpage Mod 1.14 ME
HiddenView user's profileSend private message
Google







Posted: Back to top

Display posts from previous:      
This forum is locked: you cannot post, reply to, or edit topics.This topic is locked: you cannot edit posts or make replies.

View next topic
View previous topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum

Similar Topics
Topic Author Forum Replies Posted
Member, part, problem, DonvanVliet Support Forum 1 Wed 02 Sep, 2009 20:46 View latest post
PHP Forum ohne Serverzugang "aus... sinni800 phpBB2.x - Support 0 Wed 22 Jul, 2009 13:40 View latest post
Admin kann kein Backup machen.. NGS phpBB2.x - Support 4 Tue 07 Apr, 2009 23:42 View latest post
Seltsames Login Problem dr.feelgood Support allgemein 1 Sun 29 Mar, 2009 16:53 View latest post
Problem mit Admin Voting 1.1.8 xtc.sanchez phpBB2.x - MOD Support 0 Mon 16 Mar, 2009 20:39 View latest post