Hi bakers,
Thanks for your attentions in the first place. Well, I got an answer which works fine. A crewmember (Alex) of my host has been playing around in the code of my WB installation and the template I use and found a solution. Beneath you find the changes he made. And it works fine for me. I finally get the loginscreen and my domain remains protected by the filter of my host. (Another soulution would be to put my domain on a list of exceptions but we prefered a more elegant way to solve this and keep the filter in use)
Here we go: (I don't know how to exactly place code in a thread (I know Bulletinboard e.g. can get stange behaviars), if you find it must be altered, please feel free to do that) Also notice that I don't know exactly the meaning of this code; I'm an amateur-baker with limited skills in webdesign
------------------------------------------------------------------------------------------------------
account/login.p h p.
r56-59:
if ($_REQUEST['bla']) {
$redirect = "http://".$_REQUEST['redirect'];
}
$thisApp = new Login(
r70:
"LOGIN_URL" =>
WB_URL."/account/login".PAGE_EXTENSION.'?redirect='.$redirect,
r78:
"REDIRECT_URL" => $redirect
account/login_form.p h p.
r65:
<input type="hidden" name="redirect" value="http://<?p h p echo
$thisApp->redirect_url;?>" />
framework/class.frontend.p h p.
r203-204:
$redirect = str_replace ('http://', '', $this->link);
header("Location:
".WB_URL."/account/login".PAGE_EXTENSION.'?redirect='.$redirect);
templates/industry1/index.p h p.
r60:
<input type="hidden" name="redirect" value="http://<?p h p echo
$thisApp->redirect_url;?>" />
------------------------------------------------------------------------------------------------------------
I did not discover any problems in WB after the changes were made.
Cheers,
Gerard
(Edit: 28-02-2007 at 0:19: put spaces in every p h p extension)