워드프레스 보안 강화를 위한 기본적인 세 가지 방법
원문 워드프레스 보안 플러그인 사용 워드프레스 보안 플러그인을 설치하면 스팸, 사이트 해킹 시도 등을 효과적으로 차단할 수 있습니다. 다양한 플러그인이 있는데, 다음과 같은 플러그인을 고려해볼 수 있습니다. Wordfence Security (무료) Sucuri Security (무료) BulletProof Security (무료) 이 중에서 하나를 선택하여 설치하고 항상 최신 버전으로 업데이트하여 유지하면 보안에 많은 도움이 될 것입니다. 항상 최신…
PHP 제거하는 공식
1. 특수문자만 골라서 제거하자! 1 preg_replace(“/[ #\&\+\-%@=\/\\\:;,\.’\”\^`~\_|\!\?\*$#<>()\[\]\{\}]/i”, “”, $string); 2. 알파벳만 남기고 모조리 제거하자! 1 preg_replace(“/[^a-z]/i”, “”, $string); 3. 숫자만 남기고…
How to Share Files and Folders in Windows Server 2016?
Sharing folders makes them accessible to network users and probably you need to do. After you’ve configured disks on the server, you must share files/disks to enable network users to access files and disks. When sharing files and folders also you can…
open cart Changing Date Format from EU to US?
Change it in the language file. e.g. /catalog/language/english/english.php
Python IDE: The10 Best IDEs for Python Programmers
http://noeticforce.com/best-python-ide-for-programmers-windows-and-mac All set to play with Python? Python IDE is the first thing you need to get started with python programming. There are many IDEs available out there in the wild and selecting…
Quick Tip: Make a Chrome App Shortcut For Any Web App
more Create Your First App This tutorial walks you through creating your first Chrome App. Chrome Apps are structured similarly to extensions so current developers will recognize the manifest and packaging methods. When you’re done, you’ll…
From Beginner to Advanced in OpenCart: Module Development
What Are OpenCart Modules? OpenCart modules are analogous to add-ons, plugins, or extensions in other content management systems. It’s through modules that OpenCart gives us the ability to extend its functionality without having to edit the…
무료 백업 솔루션
http://www.fbackup.com/ko/ http://jaykim361.tistory.com/670
PHP Validation And Verification
https://www.phpjabbers.com/php-validation-and-verification-php27.html Now we have to set this class to apply for every character that we enter. So we add a (+) plus sign after our class definition. We are still missing something. We have not…