vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   auto creation not possible in 3.0.7? (https://vborg.vbsupport.ru/showthread.php?t=77289)

AN-net 03-01-2005 11:17 PM

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!!!!!!

Paul M 03-02-2005 06:50 AM

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.

AN-net 03-02-2005 11:21 AM

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

AN-net 03-03-2005 06:41 PM

anyone have an idea?

AN-net 03-06-2005 07:06 AM

does anyone have an idea why this code is broke? please this is really important to me.

Paul M 03-06-2005 09:30 AM

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.

AN-net 03-06-2005 01:49 PM

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...

AN-net 03-07-2005 09:13 PM

anyone have a solution or maybe post code they use?

AN-net 03-09-2005 01:33 AM

please can someone help!!! this is so dire to me!!!

Marco van Herwaarden 03-09-2005 08:05 AM

If i don't forget (which is very likely) i will have a look tomorrow.


All times are GMT. The time now is 01:17 AM.

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.01020 seconds
  • Memory Usage 1,769KB
  • 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
  • (2)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete