vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Send reply through post message (https://vborg.vbsupport.ru/showthread.php?t=243787)

EXIDE 06-02-2010 11:34 AM

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

EXIDE 06-10-2010 01:33 PM

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.

Marco van Herwaarden 06-12-2010 07:40 AM

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


All times are GMT. The time now is 06:49 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.01114 seconds
  • Memory Usage 1,748KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (3)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete