[워드프레스] 우분투에 설치
계정 추가 및 www 폴더 생성 sudo adduser blog cd /home/blog sudo mkdir ./www sudo chmod 755 ./www cd ./www 다운로드 wget -c http://wordpress.org/latest.tar.gz 압축 해제 tar -xzvf latest.tar.gz 권한…
계정 추가 및 www 폴더 생성 sudo adduser blog cd /home/blog sudo mkdir ./www sudo chmod 755 ./www cd ./www 다운로드 wget -c http://wordpress.org/latest.tar.gz 압축 해제 tar -xzvf latest.tar.gz 권한…
원문 : https://velog.io/@pikamon/Linux-3 1. WSL 활성화 Windows PowerShell을 관리자 권한으로 실행 그리고 아래 2개의 명령어를 차례대로 입력 dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart 2. PC 재부팅 3. WSL2…
<% page_num = Request("page_num") scale = Request("scale") keyword = Request("keyword") p_act = Request("p_act") where = "WHERE 1=1 " If p_act <> "" Then where = where & "AND p_act =…
https://bebhionn.tistory.com/35 https://darksoulstory.tistory.com/489 https://blog.naver.com/PostView.naver?blogId=shackerz&logNo=220450713630&parentCategoryNo=&categoryNo=&viewDate=&isShowPopularPosts=false&from=postView https://always-try.tistory.com/17
http://sysnet.pe.kr/3/1/4780 ASP.NET Web Forms Page Code Modelhttps://msdn.microsoft.com/en-us/library/015103yb.aspx
JSON_2.0.4.asp https://github.com/danielmarcoto/asp2console/blob/master/dependencies/JSON_2.0.4.asp <% ' ' VBS JSON 2.0.3 ' Copyright (c) 2009 Tu�rul Topuz ' Under the MIT (MIT-LICENSE.txt) license. ' 'Permission is hereby granted, free of charge, to any…
<% Sub print_r(var) Dim myPrint Set myPrint = New clsPrint myPrint.print var, 0 End Sub Class clsPrint Public Sub print(var, nIndent) Dim nType, sTypeName 'Response.Write TypeName(var) nType = VarType(var) Select…
$.getUrlVar("page")?$("#page").val($.getUrlVar("page")):$("#page").val(1); $.getUrlVar("keyword")?$("#keyword").val(decodeURIComponent($.getUrlVar("keyword"))):$("#keyword").val(""); $.getUrlVar("p_act")?$("#p_act").val($.getUrlVar("p_act")):$("#p_act").val(""); var keyword = $("#keyword").val(); var p_act = $("#p_act option:selected").val(); var page = $("#page").val(); var scale = $("#scale").val(); var page_num = (page -1) * scale; var scale =…
'마지막 문자열 제거 left(rsMobile, len(rsMobile) - 1) '문자 자르기 Split(rsMobile, ",") '배열 개수 확인 Ubound(rsRsMobileArr)+1 '중단(php exit 같은) Response.end '출력(php echo 같은) Response.Write(str) '(php $_SERVER['REQUEST'] 같은) Request("param") '배열인지 확인 IsArray(arr)…
1. slice() const str = "Hello, World, JavaScript,"; let newStr = str.slice(0, -1); console.log(newStr); newStr = str.slice(0, str.length - 1); console.log(newStr); 2. substring() const str = "Hello, World, JavaScript,"; const…