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

Reply
 
Thread Tools Display Modes
  #1  
Old 03-01-2005, 11:17 PM
AN-net's Avatar
AN-net AN-net is offline
 
Join Date: Dec 2003
Location: AnimationTalk.com
Posts: 2,367
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default auto creation not possible in 3.0.7?

my thread auto creating code worked in 3.0.3 but now it doesnt at all, y?

here is my code:
PHP Code:
    global $bbuserinfo$DB_site$vboptions$vbphrase;
    require_once(
'./includes/functions_newpost.php');
    
$forumid 2;
    
$foruminfo fetch_foruminfo($forumid);
    
$post['title'] = "Discuss: ".$newstitle."";
    
$strippedtextstrip_bbcode($newstextFALSETRUE);
    if(
strlen($strippedtext) > 350)
    {
        
$shortenedtextsubstr($strippedtext0347);
        
$shortenedtext.= "...";
    }
    else
    {
        
$shortenedtext$strippedtext;
    }
    
$newsdatevbdate($vboptions['dateformat'], $newsdate);
    
$articleurl"".$vboptions['bburl']."/news/newsarticle".$articleid.".html";
    
$image"".$vboptions['bburl']."/images/news/news".$articleid."_medium.".$extension."";
    
$post['message'] = construct_phrase($vbphrase['news_post_content'], $image$newstitle$newsdate$user['userid'], $user['username'], $shortenedtext$articleurl);
    
$post['poststarttime'] = $newsdate;
    
$post['posthash'] = md5($post['poststarttime'] . $user['userid'] . $user['salt']);
    
build_new_post('thread'$foruminfo, array(), 0$post$errors);
    
$DB_site->query("UPDATE ".TABLE_PREFIX."news SET threadid=".intval($post['threadid']).", postid=".intval($post['postid'])." WHERE news_id=".intval($articleid).""); 
everything has gone wrong since i upgraded!!!!!!
Reply With Quote
  #2  
Old 03-02-2005, 06:50 AM
Paul M's Avatar
Paul M Paul M is offline
 
Join Date: Sep 2004
Location: Nottingham, UK
Posts: 23,748
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Apart from a few minor changes (like tag stripping) there is no difference between functions_newpost in 3.0.3 and 3.0.7. It should work perfectly (and does in several hacks for me).

About the only thing that can stop a thread being created is if the hash matches an existing one - meaning it fails as a duplicate.
Reply With Quote
  #3  
Old 03-02-2005, 11:21 AM
AN-net's Avatar
AN-net AN-net is offline
 
Join Date: Dec 2003
Location: AnimationTalk.com
Posts: 2,367
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

well i dont see how my posthash is incorrect, could it be that my news script is in a separate directory from vb so it thinks it coming from an outside source. cause i have no clue

anyone?

bump
Reply With Quote
  #4  
Old 03-03-2005, 06:41 PM
AN-net's Avatar
AN-net AN-net is offline
 
Join Date: Dec 2003
Location: AnimationTalk.com
Posts: 2,367
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

anyone have an idea?
Reply With Quote
  #5  
Old 03-06-2005, 07:06 AM
AN-net's Avatar
AN-net AN-net is offline
 
Join Date: Dec 2003
Location: AnimationTalk.com
Posts: 2,367
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

does anyone have an idea why this code is broke? please this is really important to me.
Reply With Quote
  #6  
Old 03-06-2005, 09:30 AM
Paul M's Avatar
Paul M Paul M is offline
 
Join Date: Sep 2004
Location: Nottingham, UK
Posts: 23,748
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

There is nothing wrong with that code that I can see. You don't give enough information to help further. How are you running it ? What is the error ? are you sure it actually runs (is their more code around it that may be broken) ?

I doubt anyone could really tell you what's wrong without access to your site to perform debugging.
Reply With Quote
  #7  
Old 03-06-2005, 01:49 PM
AN-net's Avatar
AN-net AN-net is offline
 
Join Date: Dec 2003
Location: AnimationTalk.com
Posts: 2,367
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

there is no error, it runs as a function

PHP Code:
//***********************************************
//Create Discussion Thread
function build_discussion_thread($articleid$newstitle$newstext$newsdate$extension$user)
{
    global 
$bbuserinfo$DB_site$vboptions$vbphrase;
    require_once(
'./includes/functions_newpost.php');
    
$forumid 2;
    
$foruminfo fetch_foruminfo($forumid);
    
$post['title'] = "Discuss: ".$newstitle."";
    
$strippedtextstrip_bbcode($newstextFALSETRUE);
    if(
strlen($strippedtext) > 350)
    {
        
$shortenedtextsubstr($strippedtext0347);
        
$shortenedtext.= "...";
    }
    else
    {
        
$shortenedtext$strippedtext;
    }
    
$newsdatevbdate($vboptions['dateformat'], $newsdate);
    
$articleurl"".$vboptions['bburl']."/news/newsarticle".$articleid.".html";
    
$image"".$vboptions['bburl']."/images/news/news".$articleid."_medium.".$extension."";
    
$post['message'] = construct_phrase($vbphrase['news_post_content'], $image$newstitle$newsdate$user['userid'], $user['username'], $shortenedtext$articleurl);
    
$post['poststarttime'] = $newsdate;
    
$post['posthash'] = md5($post['poststarttime'] . $bbuserinfo['userid'] . $bbuserinfo['salt']);
    
build_new_post('thread'$foruminfo, array(), 0$post$errors);
    
$DB_site->query("UPDATE ".TABLE_PREFIX."news SET threadid=".intval($post['threadid']).", postid=".intval($post['postid'])." WHERE news_id=".intval($articleid)."");
    echo 
"built thread!";

that is the function

i dont know what else to post because everything around it works...
Reply With Quote
  #8  
Old 03-07-2005, 09:13 PM
AN-net's Avatar
AN-net AN-net is offline
 
Join Date: Dec 2003
Location: AnimationTalk.com
Posts: 2,367
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

anyone have a solution or maybe post code they use?
Reply With Quote
  #9  
Old 03-09-2005, 01:33 AM
AN-net's Avatar
AN-net AN-net is offline
 
Join Date: Dec 2003
Location: AnimationTalk.com
Posts: 2,367
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

please can someone help!!! this is so dire to me!!!
Reply With Quote
  #10  
Old 03-09-2005, 08:05 AM
Marco van Herwaarden Marco van Herwaarden is offline
 
Join Date: Jul 2004
Posts: 25,415
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If i don't forget (which is very likely) i will have a look tomorrow.
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:20 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.05299 seconds
  • Memory Usage 2,290KB
  • 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_php
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (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_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
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete