Mô tả lỗi: Fuel\Core\FuelException [ Error ]: Crypt::verify_mac – Argument 1: Message Authentication Code is not the correct length; is it encoded? COREPATH//classes/crypt.php @ line 372 Lỗi này chỉ xảy ra với fuelphp 1.8 ở phiên bảng php 5.4 Cách sửa: 1. Nâng cấp phiên bản php 2. Sửa lại file core/classes/crypt.php Line 257: $auth = Binary::safeSubstr($message, $length – SODIUM_CRYPTO_GENERICHASH_BYTES_MAX);…
Danh mục: Uncategorized
Trick nhỏ làm việc với text reponsive trên mobile
Nhiều trình duyệt di động áp dụng một thuật toán để làm cho text lớn hơn và dễ đọc hơn. Khi một phần tử có chứa text sử dụng 100% chiều rộng của màn hình, kích thước văn bản của nó sẽ tăng lên cho đến khi nó đạt đến kích thước có thể đọc được, nhưng không sửa đổi…
tùy chỉnh contact form to db plugins
D:\xampp\htdocs\thaiportal_wordpress\wp-content\plugins\contact-form-7-to-database-extension\ExportToHtmlTemplate.php dòng 191 : in dữ liệu ra màn hình chi tiết contact D:\xampp\htdocs\thaiportal_wordpress\wp-content\plugins\contact-form-7-to-database-extension\ExportEntry.php giao diện màn hình chi tiết contact D:\xampp\htdocs\thaiportal_wordpress\wp-content\plugins\contact-form-7-to-database-extension\CF7DBPlugin.php */ public function whatsInTheDBPage => giao diện list hoặc giao diện chi tiết D:\xampp\htdocs\thaiportal_wordpress\wp-content\plugins\contact-form-7-to-database-extension\ExportToHtmlTable.php dòng 279 : chỉnh hiển thị của list
hướng dẫn chuyển file pem thành ppk của amazon
http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/putty.html
htmlspecialchars — Convert special characters to HTML entities
<?php $new = htmlspecialchars(“<a href=’test’>Test</a>”, ENT_QUOTES); echo $new; // <a href='test'>Test</a> ?>
Function load css with jquery
Function_loadCSS = function(href) { var cssLink = $(“<link>”); $(“head”).append(cssLink); //IE hack: append before setting href cssLink.attr({ rel: “stylesheet”, type: “text/css”, href: href }); };
Loading multiple javascript files bằng jquery
$.when( $.getScript( “/mypath/myscript1.js” ), $.getScript( “/mypath/myscript2.js” ), $.getScript( “/mypath/myscript3.js” ), $.Deferred(function( deferred ){ $( deferred.resolve ); }) ).done(function(){ //Khi load xong các file js });
Check sự kiện click hoặc move element bằng jquery
var isMove = false; $(element ) .mousedown(function() { isMove= false; }) .mousemove(function() { isMove = true; }) .mouseup(function() { if(isMove){ alert(‘click element’); }else{ alert(‘di chuyen element’); } });