![]() |
Facebook Ignited Infinite Loop Problem - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: Facebook Ignited Infinite Loop Problem (/showthread.php?tid=42863) |
Facebook Ignited Infinite Loop Problem - El Forum - 06-24-2011 [eluser]alphabase[/eluser] Looking forward to a working, proven solution ![]() Facebook Ignited Infinite Loop Problem - El Forum - 06-24-2011 [eluser]toopay[/eluser] in the normal situation, with working htaccess and right uri protocol configuration, you should can retrieve $_GET parameter from uri like your previous attemp : domain.com/welcomeFacebook/?code=878908098&state=98989898 If, for some reason you can't access that $_GET params, IMO : deals with htaccess and your uri protocol is (still) a better way rather than set uri protocol to query string and add every class constructor with ugly lines like above. Facebook Ignited Infinite Loop Problem - El Forum - 06-24-2011 [eluser]alphabase[/eluser] Will give it a try, might take a week, will reply with results Facebook Ignited Infinite Loop Problem - El Forum - 06-27-2011 [eluser]Exventri[/eluser] Think I found something here: There's a typo in Fb_ignited class (v 1.0.4 in line 173: if ($script = true): echo $this->fb_login_url(true); should be : if ($script == true): echo $this->fb_login_url(true); Facebook Ignited Infinite Loop Problem - El Forum - 06-27-2011 [eluser]Exventri[/eluser] BTW: Same typo in line 165... Facebook Ignited Infinite Loop Problem - El Forum - 06-27-2011 [eluser]alphabase[/eluser] Has the typo got anything to do with the problems mentioned above? Facebook Ignited Infinite Loop Problem - El Forum - 07-06-2011 [eluser]deth4uall[/eluser] I have fixed that typo, as well as linked an article to the issue that will help you all. Also I have released v1.0.5. http://thinkdiff.net/facebook/facebook-apps-infinite-redirection-solution/ Facebook Ignited Infinite Loop Problem - El Forum - 07-22-2011 [eluser]Ted S[/eluser] The Facebook PHP SDK is using $_REQUEST which has been problematic for me even with enable_query_strings enabled. My solution has been to hack the API code to change the function getCode() in base_facebook.php to use _GET and _COOKIE directly. This seems to be working properly to authenticate users. If anyone has a suggestion on why this is happening I'm all ears. Facebook Ignited Infinite Loop Problem - El Forum - 07-30-2011 [eluser]yabdab[/eluser] Same issue here. Just loops over and over. Wish this thread would get a response from dev? Facebook Ignited Infinite Loop Problem - El Forum - 07-31-2011 [eluser]yabdab[/eluser] After chatting with the developer, I was finally able to resolve the loop problem by changing my Facebook Advanced settings. Here is what I am using and everything works... https://skitch.com/yabdab/fc2gs/advanced-facebook-developers |