I found now a new error in the 1.0.2a bridge, maybe a new hint to find the blank page error.
If i patch SMF index.php and Sources/Subs-Post.php file the registration and the "forgot password" emails include a wrong activation link without the path, means the link is displayed as:
action=activate;u=4530;code=c16339ea17
instead of
http://www.yourdomain.com/forum/......action=activate;u=4530;code=c16339ea17I THINK THIS IS THE MAIN ERROR THAT CAUSE THE PROBLEM!!!
WHAT I HAVE TO DO TO SOLVE THIS?
Means in this Sources/Subs-Post.php code:
//JOOMLAHACKS.COM : fix links
global $mosurl;
$message = str_replace($scripturl."?", $mosurl, $message);
is the $scripturl."?" completly empty in the emails...
only $mosurl will be displayed in the emails...
If i unpatch SMF index.php and Sources/Subs-Post.php the links in the emails will be send out correctly again....