vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   create new thread php script (https://vborg.vbsupport.ru/showthread.php?t=171734)

cnotes88 02-29-2008 03:36 PM

create new thread php script
 
this possible?

what if it were multiple like 2 new threads. would like code to do it instead of through the front end.

Thanks,

Opserty 02-29-2008 04:09 PM

Not sure what you are asking but:

Create Posts

Create Threads

cnotes88 02-29-2008 05:17 PM

im not even sure. It's a start
i have a bunch of stuff in excel everyday and I can create code that converts the excel sheet to a php file

so I figure instead of manually creating 5 threads. that i could do the whole excel to .php file then run the php script.

but, 1.) i don't know PHP

2.) im not even sure where or how to run a php script

so if i can figure out how to create threads in php and where to run it then i can do this whole process easily ie; an excel sheet to 5 threads everyday

cnotes88 03-02-2008 10:24 PM

I can't seem to get this to work..
its Forums > Sports > NBA
NBA is 8 ie; /forums/forumdisplay.php?f=8

I just saved it has test.php and uploaded it to forums/ to run it. but it just says done and nothing. any ideas?

Thanks.

Code:

<?
$threaddm =& datamanager_init('Thread_FirstPost', $vbulletin, ERRTYPE_ARRAY, 'threadpost');

$forumdid= 8;

$foruminfo = fetch_foruminfo($forumid);
$threaddm->set_info('forum', $foruminfo);

$threaddm->set('forumid', $foruminfo['forumid']);
$threaddm->set('userid', Admin);
$threaddm->set('title', 'Test of Script');
$threaddm->set('pagetext', 'This was run from backend');
$threaddm->set('allowsmilie', 1);
$threaddm->set('visible', 1);
$threaddm->set('dateline', TIMENOW);
$threaddm->save(); 
?>


MoT3rror 03-02-2008 11:43 PM

The code itself outputs nothing by echo, print, etc. You have to put a echo or print at the end if you want it to output something.

cnotes88 03-03-2008 01:54 AM

Quote:

Originally Posted by MoT3rror (Post 1455548)
The code itself outputs nothing by echo, print, etc. You have to put a echo or print at the end if you want it to output something.

you mean if i want it to say something after run? like echo "script run successfully!!";

i don't care about that. I mean its not working at all. It doesn't create a new thread in my NBA forum

Dismounted 03-03-2008 04:25 AM

You're not even including the vBulletin backend.

Opserty 03-03-2008 02:29 PM

Quote:

1.) i don't know PHP

2.) im not even sure where or how to run a php script
I recommend you go and learn the basics then or hire someone to do this for you.

cnotes88 03-04-2008 07:07 PM

Quote:

Originally Posted by Dismounted (Post 1455663)
You're not even including the vBulletin backend.

not sure what you mean. can you explain.

thanks,

MoT3rror 03-04-2008 09:04 PM

PHP Code:

include('global.php'); 

This is the global file in the root of your forum.


All times are GMT. The time now is 11:02 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.01239 seconds
  • Memory Usage 1,732KB
  • 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_code_printable
  • (1)bbcode_php_printable
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (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
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete