Thank you for your reply.
I use joomla 1.5, so I cannot upgrade to CB 2.0 for now so now I want to use alternative way to fix this problem.
For debug there is no message shown even in maximum error report as I told, just blank.
I found the forum you mentioned,
www.joomlapolis.com/forum/search?q=CB+connect+username+error&childforums=1
I fixed the "username" code, but error still exists. I actually found another thing which seems to be cause of this error;
1 Click Facebook login by iPhone device
2 Opening blank page
3 The blank page NOT CLOSE
4 If I close the page by myself, login will work after that.
I think "blank page not close by itself" issue cause this login error. Do you have any advise for this.
Thank you always for your support.
--edit--
I found more detail about this. From IOS8.x JS, "window.close()" does not work.
stackoverflow.com/questions/25804730/window-close-doesnt-work-on-ios-8-gm-seed
in
there is code using "window.close();" in cbconnect.class.php, line 1914;
Code:
$js = "window.opener.oAuthSuccess = $success;"
. ( $error ? "window.opener.oAuthError = '" . addslashes( $error ). "';" : null )
. "window.close();";
echo '<script type="text/javascript">' . $js . '</script>';
Have you modify this in latest update? if so could you advise me how to fix?
Thank you!