PHP Code:
$threadinfo['title'] = 'Chatroom Archive Update';
$post['title'] = 'Chatroom Archive Update - ' . date("F j, Y, g:i a") . ' CST';
$post['message']= 'Chatter from the last hour.';
build_new_post('thread', $foruminfo, $threadinfo, 0, $post, $errors);
$threadinfo['threadid'] = $post['threadid'];
$post['title'] = '';
$post['message'] = '';
$lines = file('/eggs/mols_pet/logs/mols_pet_talk.log');
$i=0;
for($x=0;$x<count($lines);$x++) {
$post['message'] .= $lines[$x];
$i++;
if($i>=100) {
build_new_post('post', $foruminfo, $threadinfo, 0, $post, $errors);
//echo $post['message'];
$post['message'] = "";
$i=0;
}
}
if($post['message'] != "") {
build_new_post('post', $foruminfo, $threadinfo, 0, $post, $errors);
}
//echo $errors[0];
unset($lines);
$clear = fopen('/eggs/mols_pet/logs/mols_pet_talk.log', 'w');
fwrite($clear, '');
fclose($clear);
This is the test code right now that runs through the file. And for the record, the last 24 hours the script has put the posts in correct order. So this problem is very inconsistent.
And dont make fun of my chicken scratch code! It always look horrible before it is refined! :nervous: