무료 백업 솔루션
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…
OpenCart 2 Search Engine Friendly URLs
Search engine friendly (SEF), human-readable or clean URLs are URLs that make sense to both humans and search engines because they explain the path to the particular page they point to. Using SEF URLs you can convert the standard URLs such as: …
How To Set Up FileZilla FTPS Server Behind NAT in Passive Mode
How To Set Up FileZilla FTPS Server Behind NAT in Passive Mode This guide assumes you have a static public IP, NAT router, Windows, and FileZilla Server installed. Log on to the FileZilla Server Interface. Open Settings from the Edit menu. Press Passive…
SQL datetimeconversion
more Execute the following T-SQL scripts in Microsoft SQL Server Management Studio (SSMS) Query Editor to demonstrate T-SQL CONVERT and CAST functions in transforming string SQL date formats, string time & string datetime data to datetime data type.…
오픈 소스 무료 쇼핑몰 프로그램
오픈 소스 무료 쇼핑몰프로그램 해외 l 마젠토(Magento) : 100만건 이상의 다운로드를 기록한 무료 오픈 소스 온라인스토어 http://www.magentocommerce.com/download 설치 블로그 : http://chez.egloos.com/1861931 http://maeon.com/install/magento-install l 오에스커머스(OSCommerce) : 독일에서 개발한 무료 오픈 소스 온라인 스토어…
NET Framework Data Provider for SQL Server connection strings
more Standard Security Server=myServerAddress;Database=myDataBase;User Id=myUsername; Password=myPassword; SQL Server 2000 SQL Server 2005 SQL Server 2008 SQL Server 2012 SQL Server 7.0 Trusted Connection…
How to: Create or Add a Setup Project
https://msdn.microsoft.com/en-us/library/19x10e5c(v=vs.100).aspx To create a new setup project On the File menu, point to Add, then click New Project. In the resulting Add New Project dialog box, in the Project Types pane, open the Other Project Types…
Linux에서 파일 내의 문자열을 검색하는 방법.
원문보기 참고 http://soharang.tistory.com/815 http://ra2kstar.tistory.com/100 두 가지 방법이 있다. * 첫 번째는 find와 xargs를 이용하는 방법 * 두 번째는 grep을 이용하는 방법. 1) find와 xargs를 이용하여 찾는 법 $ find . | xargs grep 홍길동 => 현재 디렉토리 내 모든 파일들을 중에서 “홍길동”이라는 문자열을 갖고 있는 파일의 한…