Go Back   vb.org Archive > vBulletin 4 Discussion > vB4 General Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #11  
Old 12-21-2015, 03:36 PM
Maghrebia's Avatar
Maghrebia Maghrebia is offline
 
Join Date: Dec 2015
Location: Amsterdam
Posts: 62
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

hmm nobody of vbulletin staff know?..
Reply With Quote
  #12  
Old 12-21-2015, 03:49 PM
Dragonsys's Avatar
Dragonsys Dragonsys is offline
 
Join Date: Jan 2008
Location: DFW, Texas
Posts: 743
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm doing some searching around, but not finding much more than what was in the link above, but i'm not giving up yet.

I have not run into this error personally, but I could have sworn someone else posted about it recently.
Reply With Quote
Благодарность от:
MarkFL
  #13  
Old 12-21-2015, 03:54 PM
MarkFL's Avatar
MarkFL MarkFL is offline
 
Join Date: Feb 2014
Location: St. Augustine, FL
Posts: 3,853
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Maghrebia View Post
hmm nobody of vbulletin staff know?..
You began this thread about 12 hours ago...you may have to wait a full day or even several days before someone who has successfully dealt with this issue in the past comes along and posts, or before a solution can be found. So, hang in there, and if you make any progress on your own, please be sure to post to let others know what you find.
Reply With Quote
Благодарность от:
Maghrebia
  #14  
Old 12-21-2015, 03:56 PM
Dragonsys's Avatar
Dragonsys Dragonsys is offline
 
Join Date: Jan 2008
Location: DFW, Texas
Posts: 743
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

What browser are you using? This seems to be a common theme with Chrome & Facebook API, but other browsers not so much.
Reply With Quote
  #15  
Old 12-21-2015, 03:57 PM
Dave Dave is offline
 
Join Date: May 2010
Posts: 2,583
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Are you running the latest version of vBulletin 4?
Reply With Quote
  #16  
Old 12-21-2015, 04:04 PM
Dragonsys's Avatar
Dragonsys Dragonsys is offline
 
Join Date: Jan 2008
Location: DFW, Texas
Posts: 743
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

try this as well:

Open: /includes/facebook/base_facebook.php
Find:
PHP Code:
  public static $CURL_OPTS = array(
    
CURLOPT_CONNECTTIMEOUT => 10,
    
CURLOPT_RETURNTRANSFER => true,
    
CURLOPT_TIMEOUT        => 60,
    
CURLOPT_USERAGENT      => 'facebook-php-3.2',
  ); 
Replace With:
PHP Code:
  public static $CURL_OPTS = array(
    
CURLOPT_CONNECTTIMEOUT => 10,
    
CURLOPT_RETURNTRANSFER => true,
    
CURLOPT_TIMEOUT        => 60,
    
CURLOPT_USERAGENT      => 'facebook-php-3.2',
    
CURLOPT_SSL_VERIFYPEER => false,
    
CURLOPT_SSL_VERIFYHOST => false,
  ); 
Untested by me, use with caution.
Source - http://stackoverflow.com/questions/1...-redirect-loop

--------------- Added [DATE]1450729157[/DATE] at [TIME]1450729157[/TIME] ---------------

Quote:
Originally Posted by Dave View Post
Are you running the latest version of vBulletin 4?
4.2.3 beta 3 (or higher) is required for FB connect to function properly

--------------- Added [DATE]1450731203[/DATE] at [TIME]1450731203[/TIME] ---------------

Let us know if this works, or if what Lynne mentioned here works, after you get a chance to try them.
Reply With Quote
  #17  
Old 12-22-2015, 02:13 AM
Maghrebia's Avatar
Maghrebia Maghrebia is offline
 
Join Date: Dec 2015
Location: Amsterdam
Posts: 62
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Dragonsys View Post
What browser are you using? This seems to be a common theme with Chrome & Facebook API, but other browsers not so much.
Yes i use google chrome
Reply With Quote
  #18  
Old 12-22-2015, 02:28 AM
Dragonsys's Avatar
Dragonsys Dragonsys is offline
 
Join Date: Jan 2008
Location: DFW, Texas
Posts: 743
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This might be related to your issue...
https://vborg.vbsupport.ru/showpost....postcount=1087
Reply With Quote
  #19  
Old 12-22-2015, 02:29 AM
Maghrebia's Avatar
Maghrebia Maghrebia is offline
 
Join Date: Dec 2015
Location: Amsterdam
Posts: 62
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Dragonsys View Post
try this as well:

Open: /includes/facebook/base_facebook.php
Find:
PHP Code:
  public static $CURL_OPTS = array(
    
CURLOPT_CONNECTTIMEOUT => 10,
    
CURLOPT_RETURNTRANSFER => true,
    
CURLOPT_TIMEOUT        => 60,
    
CURLOPT_USERAGENT      => 'facebook-php-3.2',
  ); 
Replace With:
PHP Code:
  public static $CURL_OPTS = array(
    
CURLOPT_CONNECTTIMEOUT => 10,
    
CURLOPT_RETURNTRANSFER => true,
    
CURLOPT_TIMEOUT        => 60,
    
CURLOPT_USERAGENT      => 'facebook-php-3.2',
    
CURLOPT_SSL_VERIFYPEER => false,
    
CURLOPT_SSL_VERIFYHOST => false,
  ); 
Untested by me, use with caution.
Source - http://stackoverflow.com/questions/1...-redirect-loop

--------------- Added [DATE]1450729157[/DATE] at [TIME]1450729157[/TIME] ---------------
This dont have work i get the same error

--------------- Added [DATE]1450759563[/DATE] at [TIME]1450759563[/TIME] ---------------

in the url i have this:

HTML Code:
https://www.facebook.com/dialog/oauth?client_id=904538689599952&redirect_uri=http%3A%2F%2Fforums.website.nll%2Findex.php%3Fstyleid%3D4%26dofbredirect%3D1&state=d4cab63580307ae242fe2a5811420a42&sdk=php-sdk-3.2.3#_=_
Reply With Quote
  #20  
Old 12-22-2015, 03:18 AM
Dragonsys's Avatar
Dragonsys Dragonsys is offline
 
Join Date: Jan 2008
Location: DFW, Texas
Posts: 743
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Maghrebia View Post
HTML Code:
https://www.facebook.com/dialog/oauth?client_id=904538689599952&redirect_uri=http%3A%2F%2Fforums.website.nll%2Findex.php%3Fstyleid%3D4%26dofbredirect%3D1&state=d4cab63580307ae242fe2a5811420a42&sdk=php-sdk-3.2.3#_=_
Try using the Default Style
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 08:13 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05180 seconds
  • Memory Usage 2,284KB
  • Queries Executed 13 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (2)bbcode_html
  • (4)bbcode_php
  • (5)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (10)post_thanks_box
  • (2)post_thanks_box_bit
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (2)post_thanks_postbit
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete