your widget

This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

Thứ Năm, 21 tháng 8, 2014

Khắc phục lỗi Import large files mysql phpmyadmin localhost

You probably tried to upload a file that is too large. Please refer to documentation for a workaround for this limit.





khi gặp lỗi này các bạn vào phpMyAdmin\config.inc.php và config.sample.inc.php

Tìm
$cfg['UploadDir'] =''; 
sửa lại
$cfg['UploadDir'] = 'upload'; 
Vào thư mục phpmyadmin tạo một thư mục tên là "upload" Bây giờ các bạn copy file database vào đây

Bây giờ vào localhost/phpmyadmin/import sẽ thấy một box đổ xuống với các database đã di chuyển vào. Chọn 1 data cần import vào và thực hiện import

Vậy là xong

Thứ Hai, 11 tháng 8, 2014

Tạo menu trượt bên cho website

Menu này có thể đặt bên trái hoặc phải đều được chỉ cần các bạn thay toàn bộ “left” thành “right” hoặc ngược lại là được.
[Image: giaoducviet.net-Untitled7.png]

Để làm được các bạn lấy code css sau chèn vào website của mình, cái này tùy từng mã nguồn mà chèn cho phù hợp.
Code:
*{
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-family: Arial, Helvetica, sans-serif;
    vertical-align: baseline;
}
@font-face {
    font-family: 'myFont';
    src: url('../images/VBRK2_0.TTF');
}
#menu{
    width: 100px;
    height: 500px;
    margin: 20px;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1111;
}
#menu a.kt{
    width: 80px;
    height: 80px;
    float: left;
    margin-bottom: 20px;
    position: relative;
    text-decoration: none;
}
.icon_menu{
    width: 80px;
    -webkit-border-radius: 53px;
    -moz-border-radius: 53px;
    border-radius: 53px;
    height: 80px;
}
.icon_menu:hover{
    width: 80px;
    height: 80px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

#menu a.kt span{
    position: absolute;
    bottom: 20px;
    left: 100px;
    font-family: 'myFont';
    width: auto;
    height: 30px;
    font-size: 1.2em;
    color: #FFF;
    text-decoration: none;
    background: -webkit-linear-gradient(#CE009B, #D46FBB); /* For Safari */
    background: -o-linear-gradient(#CE009B, #D46FBB); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#CE009B, #D46FBB); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#CE009B, #D46FBB); /* Standard syntax */
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 0 10px 0 10px;
    line-height: 30px;
    opacity: 0;
    -webkit-transition: all 1s ease-out;
    -moz-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    transition: all 1s ease-out;
    cursor: default;
}
#menu a.kt:hover span{
    opacity: 1;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

tiếp đó các bạn chèn code sau và trước thẻ đóng “body” và thay link hình cũng như link chuyển đến phù hợp là được.
Code:
<div id="menu">
    <a class="kt" href="#"><img class="icon_menu" alt="" src="images/menu/home.png" /><span>Home</span></a>
    <a class="kt" href="http://www.youtube.com/user/thuthuatso"><img class="icon_menu" alt="" src="images/menu/youtube.png" /><span>Youtube</span></a>
    <a class="kt" href="#"><img class="icon_menu" alt="" src="https://lh6.googleusercontent.com/-3uPAXrSfwTA/U-OIvnoAwHI/AAAAAAAAGVc/FwJDGtN85Mg/giaoducviet.net-icontts.jpg" /><span>Thuthuatso.com</span></a>
    <a class="kt" href="https://www.facebook.com/giaoducv"><img class="icon_menu" alt="" src="images/menu/facebook.png" /><span>Facebook</span></a>
    <a class="kt" href="https://twitter.com/caoxuanhung"><img class="icon_menu" alt="" src="images/menu/twitter.jpg" /><span>Twitter</span></a>
</div>
Như vậy là đã xong. Chúc các bạn thành công