Go Back   vb.org Archive > vBulletin 5 Connect Discussion > vB5 Programming Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 02-15-2018, 07:41 AM
userform3 userform3 is offline
 
Join Date: Jul 2010
Posts: 11
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default I want to login vBulletin through my site

Hi,

from a CMS the user should log in to the vb.
The login procedure takes place in CMS.

At vb I got this https://www.vbulletin.com/forum/blog...n-your-website link sent to me by the users.
For the purpose of the login I created a plugin, registered in vb Backen.
The plugin itself is stored in
Code:
/var/www/dieseite2_de/html/forum/core/packages/dieseite2/api/dieseite2.php
When opening the forum via the URL www.test.dieseite.de/forum/ I get the following message:

Quote:
Couldn't read config file config.php.
The error message is generated in the file
Code:
/var/www/dieseite2_de/html/forum/includes/vb5/config.php
What am I doing wrong?
Has the plugin been stored in the wrong place?

Anyone have any idea how to solve this?
What am I doing wrong?
Has the plugin been stored in the wrong place?

Anyone have any idea how to solve this?

regards
user
Reply With Quote
  #2  
Old 02-15-2018, 07:49 AM
userform3 userform3 is offline
 
Join Date: Jul 2010
Posts: 11
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I forgot an example of the plugin, it is attached.
Attached Files
File Type: php plugin_forum.php (1.3 KB, 13 views)
Reply With Quote
  #3  
Old 02-16-2018, 07:27 AM
userform3 userform3 is offline
 
Join Date: Jul 2010
Posts: 11
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi,

after joining a user did not change my approach.
I have outsourced the login procedure to the CMS and combined it into one function:
PHP Code:
function do_login_vb(){
    
        
$vbpath '/var/www/die_seite2_de/forum';
        
define('CSRF_PROTECTION'false);
        require_once(
$vbpath '/includes/vb5/autoloader.php');
        
vB5_Autoloader::register($vbpath);
        
// Script is only executed up to this point!
        
vB5_Frontend_Application::init('config.php');
        
// Attempting to include the config file, but unfortunately they only issue an error message
        #vB5_Frontend_Application::init('/var/www/die_seite2_de/forum/config.php');
        #vB5_Frontend_Application::init('/var/www/die_seite2_de/forum/core/includes/config.php');
        
        
$username 'xxxxxxx';
        
$password 'xxxxxxx';
        
$api Api_InterfaceAbstract::instance();
        
        
$loginInfo $api->callApi('user''login', array($username$password));        
        
// Only one test edition
        
echo "<pre>loginInfo: " .print_r$loginInfotrue ). "</pre><hr>";                
    } 
When you call the forum that is integrated in the CMS, the following message is displayed:

Quote:
Couldn't read config file config.php.

Anyone any idea how I can fix the message?
Or what is the cause?
Thank you in advance.
Reply With Quote
  #4  
Old 03-19-2018, 05:29 PM
kkinsey kkinsey is offline
 
Join Date: Oct 2011
Posts: 32
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Just a guess, but either provide the full path here:

Code:
vB5_Frontend_Application::init('config.php');
Or (possibly better), use PHP's chdir() to change the script's virtual environment to the vBulletin installation's expected working directory for the duration of the script (if I'm right, this would mean no further errors of this type).
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 07:38 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.03757 seconds
  • Memory Usage 2,218KB
  • Queries Executed 14 (?)
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
  • (3)bbcode_code
  • (1)bbcode_php
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (4)post_thanks_box
  • (4)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (4)post_thanks_postbit_info
  • (4)postbit
  • (1)postbit_attachment
  • (4)postbit_onlinestatus
  • (4)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
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • postbit_attachment
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete