Code php post bài tự động lên forum Xenforo:
- Demo:
https://forum.chiplessprinter.com/
https://forum.resetmayin.vn/
https://wic.edu.vn
- Để post bài tự động, và lập lịch post cho xenforo bạn có thể liên hệ admin theo thông tin:
Mobile/ Zalo: 0915.589.236
Facebook: https://www.facebook.com/nguyendangmien
PHP:
<?php
$dir = "_path_xenforo";
require($dir . '/src/XF.php');
XF::start($dir);
$forumId = '2'; // ID của mục cần post
$userId = '1'; //User ID # ID của tài khoản cần post
//$countfile='count.txt';
//$check_ID_CSV
$title = "title";
$message = 'content';
$tag = 'tag 1, tag 2';
$forum = \XF::em()->find('XF:Forum', $forumId);
$user = \XF::em()->find('XF:User', $userId);
\XF::asVisitor($user, function() use ($forum, $title, $message, $tag )
{
$creator = \XF::service('XF:Thread\Creator', $forum);
$creator->setContent($title, $message, $tag );
$creator->setPrefix('1'); //Prefix ID # to set new thread as.
$creator->setIsAutomated();
$creator->save();
});
https://forum.chiplessprinter.com/
https://forum.resetmayin.vn/
https://wic.edu.vn
- Để post bài tự động, và lập lịch post cho xenforo bạn có thể liên hệ admin theo thông tin:
Mobile/ Zalo: 0915.589.236
Facebook: https://www.facebook.com/nguyendangmien
Last edited: