Ich habe versucht den "Beschreibung für die Kategorien"-Mod einzubauen,aber wenn ich dann im ACP die Kategorie einstellen will,dann steht im Beschreibungs feld nur folgendes und es wird auch kein Button oder so mehr angezeigt.
Code: Alles auswählen
</td>
</tr>
<tr>
<td class="catBottom" colspan="2" align="center"><input type="hidden" name="mode" value="modcat" /><input type="hidden" name="c" value="1" /><input type="submit" name="submit" value="Update" class="mainoption" /></td>
</tr>
</table>
</form>
<br clear="all" />
<!--
Please note that the following copyright notice
MUST be displayed on each and every page output
by phpBB. You may alter the font, colour etc. but
you CANNOT remove it, nor change it so that it be,
to all intents and purposes, invisible. You may ADD
your own notice to it should you have altered the
code but you may not replace it. The hyperlink must
also remain intact. These conditions are part of the
licence this software is released under. See the
LICENCE and README files for more information.
The phpBB Group : 2001
//-->
<div align="center"><span class="copyright">Powered by phpBB 2.0.21 © 2001 <a href="http://www.phpbb.com/" target="_phpbb" class="copyright">phpBB Group</a><br />Deutsche Übersetzung von <a href="http://www.phpbb.de/" target="_blank" class="copyright">phpBB.de</a></span></div>
</body>
</html>
folgendes Problem:
Wenn ich mit dem Junior Admin (bei normalem Admin geht alles) über den Link unten auf den Adminbereich zugreifen will,dann aktualisiert sich nur die Seite und wenn ich oben in der Leiste einfach http://....../admin eingebe,dann kommt folgende Meldung:
Code: Alles auswählen
The requested module does not exist or you are not an authorized user.
DEBUG MODE
Line : 49
File : pagestart.php
Code: Alles auswählen
if (!defined('IN_PHPBB'))
{
die("Hacking attempt");
}
define('IN_ADMIN', true);
// Include files
include($phpbb_root_path . 'common.'.$phpEx);
//
// Start session management
//
$userdata = session_pagestart($user_ip, PAGE_INDEX);
init_userprefs($userdata);
//
// End session management
//
include_once($phpbb_root_path . 'includes/functions_jr_admin.' . $phpEx);
find_lang_file_nivisec('lang_jr_admin');
if (!$userdata['session_logged_in'])
{
redirect(append_sid("login.$phpEx?redirect=admin/index.$phpEx", true));
}
elseif (!jr_admin_secure(basename($HTTP_SERVER_VARS['REQUEST_URI'])))
{
message_die(GENERAL_ERROR, $lang['Error_Module_ID'], '', __LINE__, __FILE__);
}
if ($HTTP_GET_VARS['sid'] != $userdata['session_id'])
{
redirect("index.$phpEx?sid=" . $userdata['session_id']);
}
if (!$userdata['session_admin'])
{
redirect(append_sid("login.$phpEx?redirect=admin/index.$phpEx&admin=1", true));
}
if (empty($no_page_header))
{
// Not including the pageheader can be neccesarry if META tags are
// needed in the calling script.
include('./page_header_admin.'.$phpEx);
}
?>
Danke im Voraus