View Single Post
  #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
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01214 seconds
  • Memory Usage 1,818KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_php
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.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
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • 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
  • showpost_complete