• 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 tăng số lượng ký tự chuyên mục và tiêu đề xenforo 2 - How to Increase Character Limit for Forum Nodes and Titles in Xenforo 2

Admin

Well-Known Member
Staff member
Administrator
Chào các bạn, hôm nay tuoitreit.vn xin hướng dẫn các bạn tăng số lượng ký tự của chuyên mục và tiêu đề bài viết cho xenforo
Xenforo mặc định chỉ hỗ trợ 50 ký tự cho chuyên mục và 150 ký tự cho tiêu đề, nếu vượt quá sẽ báo lỗi
Oops! We ran into some problems. Please enter a value using 50 characters or fewer.

Để tăng số ký tự bạn vào phpMyAdmin > SQL và chạy lệnh sau

SQL:
ALTER TABLE `xf_node` CHANGE COLUMN `title` `title` VARCHAR(500), CHANGE COLUMN `node_name` `node_name` VARCHAR(500);
ALTER TABLE `xf_thread` MODIFY title varchar(500);
ALTER TABLE `xf_forum` MODIFY last_thread_title varchar(500);

53776990331_37548f609b_o.png


Vào /src/XF/Entity/Node.php
Tìm
PHP:
$structure->columns = [
            'node_id' => ['type' => self::UINT, 'autoIncrement' => true, 'nullable' => true],
            'title' => ['type' => self::STR, 'maxLength' => 50,
                'required' => 'please_enter_valid_title', 'api' => true
            ],
            'node_name' => ['type' => self::STR, 'maxLength' => 50, 'nullable' => true, 'default' => null,
                'unique' => 'node_names_must_be_unique',
                'match' => self::MATCH_ALPHANUMERIC_HYPHEN,
                'api' => true
            ],

Và thay đổi 50 thành 500

Vào /src/XF/Entity/Thread.php
Tìm
PHP:
$structure->columns = [
            'thread_id' => ['type' => self::UINT, 'autoIncrement' => true, 'nullable' => true],
            'node_id' => ['type' => self::UINT, 'required' => true, 'api' => true],
            'title' => ['type' => self::STR, 'maxLength' => 150,
                'required' => 'please_enter_valid_title',
                'censor' => true,
                'api' => true,
            ],

Và thay đổi 150 thành 500

Vào /src/XF/Entity/Forum.php
Tìm
PHP:
'last_thread_title'           => ['type' => self::STR, 'maxLength' => 150, 'default' => ''],

Thay đổi 150 thành 500

Vậy là xong rồi đó
Chúc bạn thành công!
Mọi sao chép vui lòng ghi rõ nguồn tuoitreit.vn
 

Facebook Comments

Similar threads

New posts New threads New resources

Back
Top