Hehe, I know, but when I was checking out vb2 code, I don't recall seeing any decent amount of comments either. Starting a bit of coding right now, I'll update this with the results.
Update: Grrrr........
Here's my code so far:
PHP Code:
require_once('./forums/includes/functions_newpost.php');
require_once('./forums/includes/functions.php');
require_once('./forums/includes/functions_login.php');
$foruminfo['forumid'] = 8;
$threadinfo['open'] = 1;
$threadinfo['visible'] = 1;
//$threadinfo['title'] = 'This is the test title';
//$threadinfo['forumid'] = 8;
//$threadinfo['postusername'] = 'Poster';
//$threadinfo['postuserid'] = 5;
$post['title'] = 'This is the test title';
$post['username'] = 'Poster';
$post['userid'] = 5;
$post['pagetext'] = 'This is the message stuff\n Hope this words\n\n\n\n TESTTTTTTT\n';
$post['preview'] = 0;
build_new_post('thread', $foruminfo, $threadinfo, 0, $post, $errors);
I'm getting this error:
Warning: build_new_post(./includes/functions_login.php): failed to open stream: No such file or directory in .../includes/functions_newpost.php on line 212
Fatal error: build_new_post(): Failed opening required './includes/functions_login.php' (include_path='.:/usr/share/pear') in .../includes/functions_newpost.php on line 212
Line 211-213:
PHP Code:
// remove sessionhash from urls:
require_once('./includes/functions_login.php');
$post['message'] = fetch_removed_sessionhash($post['message']);
After I got that error, I added the require into the page, but with no effect. Any suggestions?
BTW, after this darn thing gets functional, I think I'll slap the good stuff from this thread and post a basic tutorial about this so it can help others. That ok with you? If so, what sub-forum would you recommend it be placed in?