Pagina 1 van 1

Beheerderpaneel link werkt niet

Geplaatst: 20 sep 2010, 20:54
door Rimo
Hallo,

Ik heb iets vreemds met de Beheerderspaneel link in de Footer.

Als ik wil inloggen krijg ik het volgende te zien:

http://onlineboard.nl/adm/%7BU_ACP%7D

En dat werkt dus niet.

Nu kan ik wel naar het beheerderspaneel via de Portal,maar niet via de link in de footer.

Kan er iets mis zijn met de footer?

Dit is een gedeelte uit de footer:

Code: Selecteer alles

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head>
<!-- IF not S_IS_BOT -->
</head>    <body><!-- ENDIF -->
{RUN_CRON_TASK}
<!-- IF $CA_SHOW_COPYRIGHT_COMMENT -->
<pre>    We request you retain the full copyright notice below including the link to www.phpbb.com.<br>    This not only gives respect to the large amount of time given freely by the developers<br>    but also helps build interest, traffic and use of phpBB3. If you (honestly) cannot retain<br>    the full copyright we ask you at least leave in place the "Powered by phpBB" line, with<br>    "phpBB" linked to www.phpbb.com. If you refuse to include even this then support on our<br>    forums may be affected.<br><br>    The phpBB Group : 2006<br><br>    For support visit http://www.stsoftware.biz/support<br></pre>
<!-- ENDIF -->
<div id="wrapfooter"><!-- IF U_ACP --> <span class="gensmall">[ <a href="%7BU_ACP%7D">{L_ACP}</a>
]</span><br>
<br>
<!-- ENDIF --> <span class="copyright">
Powered by <a href="http://www.phpbb.com/">phpBB</a>
© 2000, 2002, 2005, 2007 phpBB Group. <br>
Logo designed by <a href="http://www.dniieze.nl" target="_blank">Dniieze.nl</a><br>
<!-- IF TRANSLATION_INFO -->
{TRANSLATION_INFO}<!-- ENDIF --><!-- IF DEBUG_OUTPUT --> <br>
<bdo dir="ltr">[ {DEBUG_OUTPUT} ]</bdo><!-- ENDIF --></span>
</div>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-18615404-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body></html>
Ben benieuwd wat er fout gaat.

Alvast hartelijk dank voor het meekijken.

Richard

Re: Beheerderpaneel link werkt niet

Geplaatst: 20 sep 2010, 21:04
door PhilipvD
Probeer deze footer eens:

Code: Selecteer alles

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html><head>
    <!-- IF not S_IS_BOT -->
    </head>    <body><!-- ENDIF -->
    {RUN_CRON_TASK}
    <!-- IF $CA_SHOW_COPYRIGHT_COMMENT -->
    <pre>    We request you retain the full copyright notice below including the link to www.phpbb.com.<br>    This not only gives respect to the large amount of time given freely by the developers<br>    but also helps build interest, traffic and use of phpBB3. If you (honestly) cannot retain<br>    the full copyright we ask you at least leave in place the "Powered by phpBB" line, with<br>    "phpBB" linked to www.phpbb.com. If you refuse to include even this then support on our<br>    forums may be affected.<br><br>    The phpBB Group : 2006<br><br>    For support visit http://www.stsoftware.biz/support<br></pre>
    <!-- ENDIF -->
    <div id="wrapfooter"><!-- IF U_ACP --> <span class="gensmall">[ <a href="{U_ACP}">{L_ACP}</a>
    ]</span><br>
    <br>
    <!-- ENDIF --> <span class="copyright">
    Powered by <a href="http://www.phpbb.com/">phpBB</a>
    © 2000, 2002, 2005, 2007 phpBB Group. <br>
    Logo designed by <a href="http://www.dniieze.nl" target="_blank">Dniieze.nl</a><br>
    <!-- IF TRANSLATION_INFO -->
    {TRANSLATION_INFO}<!-- ENDIF --><!-- IF DEBUG_OUTPUT --> <br>
    <bdo dir="ltr">[ {DEBUG_OUTPUT} ]</bdo><!-- ENDIF --></span>
    </div>
    <script type="text/javascript">
    var _gaq = _gaq || [];
    _gaq.push(['_setAccount', 'UA-18615404-1']);
    _gaq.push(['_trackPageview']);
    (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
    })();
    </script>
    </body></html>
Nadat je het bestand hebt geüpload wel even de buffer legen in het beheerderspaneel. (inloggen via de link op je portaal dus. ;) )
Verplaatst van 3.0 support
- PhilipvD

Re: Beheerderpaneel link werkt niet

Geplaatst: 20 sep 2010, 21:08
door Rimo
Perfect,heel erg bedankt,probleem weer opgelost!

Waar zat het probleem hem eigenlijk in?

Richard

Re: Beheerderpaneel link werkt niet

Geplaatst: 21 sep 2010, 06:40
door PhilipvD
Het probleem zat hem in dit regeltje:

Code: Selecteer alles

<a href="%7BU_ACP%7D">{L_ACP}</a>
Dat moest zijn:

Code: Selecteer alles

<a href="{U_ACP}">{L_ACP}</a>

Re: Beheerderpaneel link werkt niet

Geplaatst: 21 sep 2010, 08:13
door Rimo
PhilipvD schreef:Het probleem zat hem in dit regeltje:

Code: Selecteer alles

<a href="%7BU_ACP%7D">{L_ACP}</a>
Dat moest zijn:

Code: Selecteer alles

<a href="{U_ACP}">{L_ACP}</a>

Helemaal duidelijk,ben in ieder geval blij dat het weer goed werkt nu.

Hartelijk dank hiervoor.

Richard