• 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 xử lý lỗi 500 khi search trên vbb

Admin

Well-Known Member
Staff member
Administrator
Hướng dẫn xử lý lỗi 500 khi search trên VBB
Bạn có thể sẽ gặp lỗi này khi sử dụng chức năng tìm kiếm ở VBB với các máy chủ cài đặt phiên bản PHP 5.3.x trở lên.
Nguyên nhân là VBB sử dụng một số hàm cũ mà phiên bản PHP 5.3.x đã tắt đi.
Sau đây là cách sử lý lỗi.

Bạn sửa file /vb/search/criteria.php
Tìm đến đoạn
PHP:
if (method_exists($this->search_type, 'get_display_name'))
{
$hashstrings[] = 'type:' . $this->search_type->get_display_name();
}
else
{
$hashstrings[] = 'type:' . strval($this->search_type);
}
Và thay thế bằng đoạn bên dưới
PHP:
$hashstrings[] = 'type:' . strval($this->search_type);
 

Facebook Comments

Similar threads

New posts New threads New resources

Back
Top