aathuat
Private
- Tham gia
- 15/05/2017
- Bài viết
- 15
- Được Like
- 7
Như title mình có tham khảo bài https://xenforo.com/community/threads/xenforo_datawriter-to-create-post-in-xf2.140853/
và dùng xen2 nhưng khi run php thì lỗi
PHP Parse error: syntax error, unexpected '$dir' (T_VARIABLE) in /home/.... ở dòng 1
Đường dẫn mình đã sửa ok mà vẫn ko đc
ko biết có bạn nào thử chưa ?
Mã:
<?php
$dir = "/home/vvvbb/public_html/domain/xxxx.org";
require($dir . '/src/XF.php');
XF::start($dir);
$forumId = 68; //Forum ID of where to post thread
$userId = 6; //User ID # of account to post thread as
$title = "CONTENTS OF TITLE";
$message = 'CONTENTS OF POST Message';
$forum = \XF::em()->find('XF:Forum', $forumId);
$user = \XF::em()->find('XF:User', $userId);
\XF::asVisitor($user, function() use ($forum, $title, $message)
{
$creator = \XF::service('XF:Thread\Creator', $forum);
$creator->setContent($title, $message);
$creator->setPrefix('1'); //Prefix ID # to set new thread as.
$creator->setIsAutomated();
$creator->save();
});
PHP Parse error: syntax error, unexpected '$dir' (T_VARIABLE) in /home/.... ở dòng 1
Đường dẫn mình đã sửa ok mà vẫn ko đc
ko biết có bạn nào thử chưa ?
Bài viết liên quan
Bài viết mới
Bị lỗi data
bởi bloghocpiano,