• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Hướng dẫn fix lỗi Thread Prefix Listing 1.2.0

Admin

Well-Known Member
Staff member
Administrator
Sau thi install add-ons Thread Prefix Listing 1.2.0 bị lỗi
Diễn đàn bạn yêu cầu không tìm thấy

Cách khắc phục:
- Tìm /library/PrefixForumListing/Extend/ControllerPublic/Forum.php
Dòng thứ 5:
PHP:
public function actionIndex()
Sửa thành
PHP:
public function actionForum()

Dòng 7
PHP:
$response = parent::actionIndex();
Sửa thành:
PHP:
$response = parent::actionForum();
- Tìm /library/PrefixForumListing/DataWriter/Discussion/Thread.php

Dòng thứ 4
PHP:
protected function _discussionPostDelete(array $messages)
Sửa thành
PHP:
protected function _discussionPostDelete()

Dòng thứ 12
PHP:
return parent::_discussionPostDelete($messages);
Sửa thành
PHP:
return parent::_discussionPostDelete();

Dòng thứ 16:
PHP:
protected function _discussionPostSave(array $messages)

Sửa thành
PHP:
protected function _discussionPostSave()

Dòng thứ 44:
PHP:
return parent::_discussionPostSave($messages);
Sửa thành:
PHP:
return parent::_discussionPostSave();
Lưu tất cả lại là xong
Chúc các bạn thành công!
 

Facebook Comments

Similar threads

New posts New threads New resources

Back
Top