Khắc phục lỗi khi cài đặt VBB trong localhost

StarWar

Intern
+ Khắc phục :

Đầu tiên khắc phục lỗi C:\xampp\htdocs\includes\class_core.php on line 3314 khi cài đặt VBB trên Xampp ở Localhost

1. Tìm file config.php thêm dòng này vào dưới <?php
ini_set("display_errors", "0");

2. Tìm file "Class_Core.php" tìm dòng 3314 :
$this->shutdown = vB_Shutdown::instance();
Sửa thành :
$this->shutdown =@ vB_Shutdown::instance();

3. Nếu vẫn còn lỗi thì :

Sửa thành
return $this->functions['real_escape_string']($string);

4. Sửa file
includes/class_dbalter.php

thành
function drop_index($fieldname = '');


thành
function add_index($fieldname = '', $fields = '', $type = '', $overwrite = false);





Xong rùi install
 
Sửa lần cuối:
Back
Top