Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 Programming Discussions
  #1  
Old 06-02-2010, 11:34 AM
EXIDE EXIDE is offline
 
Join Date: Feb 2009
Posts: 16
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Send reply through post message

Hello,

i am writing a MFC application which i want to be able to reply to a thread in my forum. Its meant as a request button which simply posts the username into a fixed ( non changing ) topic.

I've successfully done login by now. A simple php script accepts the username and pw ( both as md5 ) and checks the users details with the prebuilt vb api.

PHP Code:
// Includes
require_once('./global.php');
require_once(
DIR '/includes/functions_login.php');

// Fetch Ip
function fetch_ip()
{
        return 
$_SERVER['REMOTE_ADDR'];
}

// Fetch Date
function fetch_date()
{
    return 
date("F j, Y, g:i a"); // March 10, 2001, 5:16 pm
}

// Check Request
if( $_POST['do'] == 'Login' )
{
    
// this fuunction parses _GET data into an array
    
$vbulletin->input->clean_array_gpc('p', array(
        
'vb_login_username' => TYPE_STR,
        
'vb_login_password' => TYPE_STR,
        
'vb_login_md5password' => TYPE_STR,
        
'vb_login_md5password_utf' => TYPE_STR,
        
'postvars' => TYPE_STR,
        
'cookieuser' => TYPE_BOOL,
        
'logintype' => TYPE_STR,
        
'cssprefs' => TYPE_STR,
        
'HWID' => TYPE_STR,
    ));

    
// can the user login?
    
$strikes verify_strike_status($vbulletin->GPC['vb_login_username']);
    
    if(
$vbulletin->GPC['vb_login_username'] == '')
    {
        echo 
"PW";
        exit;
    }

    
// login attempt
    
if(!verify_authentication($vbulletin->GPC['vb_login_username'], $vbulletin->GPC['vb_login_password'], $vbulletin->GPC['vb_login_md5password'], $vbulletin->GPC['vb_login_md5password_utf'], $vbulletin->GPC['cookieuser'], true))
    {
        
// THIS IS THE BAD PASSWORD AUTHENTICATION SECTION
        
echo "PW";
        exit; 
    }
    else 
    {
        
// THIS IS THE GOOD PASSWORD AUTHENTICATION SECTION
         
process_new_login($vbulletin->GPC['logintype'], $vbulletin->GPC['cookieuser'], $vbulletin->GPC['cssprefs']);
         
         
// HWID check
         
$Transfer_Username $vbulletin->GPC['vb_login_username'];
         
$cur_userid $vbulletin->userinfo['userid'];
        
$Real_HwidArray $db->query("SELECT Hwid FROM " TABLE_PREFIX "user WHERE userid = $cur_userid");
        
$Real_Hwid "";
        while (
$cur $db->fetch_array($Real_HwidArray))
        {
              
$Real_Hwid $cur['Hwid'];
        }
         
$Transfer_Hwid $vbulletin->GPC['HWID'];
        if( 
$Real_Hwid == '' )
        {
            
// Check if his Hwid is ok
            
if( strlen$Transfer_Hwid ) < 
            {
                
// Bad hardware id
                
echo "HW";
                exit;
            }
            
            
// If the Hwid is ok, update his Hwid entry
            
$UpdateInfo    "UPDATE user SET Hwid = '".$Transfer_Hwid."' WHERE username = '".$Transfer_Username."'";
            
$db->query($UpdateInfo);
        }
        else if(
$Transfer_Hwid != $Real_Hwid)
        {
            
// Bad hardware id
            
echo "HW";
            exit;
        }
    and 
so on... 
I havnt got any clue how i would reply a post in a thread after. Are there any experienced users who can push me in the right direction or accomblished similar tasks?

Help is greatful appreciated.

Sincerly,
Frank
Reply With Quote
  #2  
Old 06-10-2010, 01:33 PM
EXIDE EXIDE is offline
 
Join Date: Feb 2009
Posts: 16
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Are there any ideas or hints? I'm still searching for a solution.. Googled without any recommendable results.

A php script would also be ok. I could send POST messages to it and the php script could modify the db or anything?! Not sure if that would work out.
Reply With Quote
  #3  
Old 06-12-2010, 07:40 AM
Marco van Herwaarden Marco van Herwaarden is offline
 
Join Date: Jul 2004
Posts: 25,415
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Please see the articles on using the data managers in our Articles section.
Reply With Quote
Reply

Thread Tools
Display Modes

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:50 AM.


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.03943 seconds
  • Memory Usage 2,206KB
  • 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
  • (1)bbcode_php
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (3)post_thanks_box
  • (3)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (3)post_thanks_postbit_info
  • (3)postbit
  • (3)postbit_onlinestatus
  • (3)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
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete