Chrome : 44.0.2403.89 https js error
function.php function https_chrome44fix() { $_SERVER['HTTPS'] = false; } add_action('init', 'https_chrome44fix',0);
chrome : contenteditable
data:text/html,<html contenteditable></html>
wp user pass : auto update by wp_set_password()
wp-includes/pluggable.php function wp_check_password($password, $hash, $user_id = '') { global $wp_hasher, $wpdb; //owl if (substr($hash,0,1)=="*") { $tmpPWDs = $wpdb->get_results( "SELECT password('".$password."') as pwd" ); $mysqlPWD = ""; foreach ( $tmpPWDs as $tmpPWD ) { $mysqlPWD = $tmpPWD->pwd; } $check = hash_equals( $hash, $mysqlPWD ); if ( $check && $user_id ) { wp_set_password($password, $user_id); $hash = wp_hash_password($password); […]
tagregator 인스타그램 최근 데이터를 가져오지 못하는 오류 디버깅
1. /wp-content/plugins/tagregator/tggr-media-source.php 2. /wp-content/plugins/tagregator/tggr-source-instagram.php
wp-filebase : basename($file_path) : 한글파일명 없어짐 디버깅
한글 파일명인 경로를 basename()으로 파일명을 추출하면 한글이 누락되는 현상이 있다. 이 경우, setlocale(LC_ALL, 'ko_KR.utf8'); 을 사용하여 파일명 언어와 인코딩에 대해 재정의해 주어야 한다.