Thứ Ba, 8 tháng 3, 2016

share texture

share texture
hướng dẩn sử dụng : 
https://www.youtube.com/watch?v=4ztDjJu0B2w
link dowload :
https://www.fshare.vn/file/EX819UAKOFSI
https://www.fshare.vn/file/6IPTON1TR3TL
========================================
link 1 số tài nguyên khác 
link full tổng hợp 1 : 
https://www.fshare.vn/folder/CUY1W9BG4VVH 
link full tổng hợp 2 : 
https://www.fshare.vn/folder/VBN2ZKM6MFX5
có gì liên hệ face của mình
https://www.facebook.com/hoainiem.0905180795

Thứ Tư, 2 tháng 3, 2016

Fix lỗi "bump_request_timeout()" của plugin Wordpress Importer

Lỗi hiển thị như này:

Declaration of WP_Import::bump_request_timeout() should be compatible with WP_Importer::bump_request_timeout($val) in xxxxx\wp-content\plugins\wordpress-importer\wordpress-importer.php on line 38



Cách sửa:

- Mở file "wordpress-importer.php"
Tìm đến dòng 1110:
+ Sửa:    
function bump_request_timeout() {
+ Thành:
function bump_request_timeout( $val ) {

- Mở file "parsers.php"

Tìm đến dòng 404:
+ Sửa:    
function WXR_Parser_Regex() {
        $this->__construct();
}

function __construct() {
        $this->has_gzip = is_callable( 'gzopen' );
}

+ Thành:
function __construct() {
        $this->has_gzip = is_callable( 'gzopen' );
}

function WXR_Parser_Regex() {
        $this->__construct();
}

Xem thêm ảnh: