Server:Apache/2.4.41 (Unix)...
X-Powered-By:PHP/7.4.3
The main IP address: 175.192.165.111,Your server Korea, Republic of,Seoul ISP:Korea Telecom TLD:com CountryCode:KR
The description :콘텐츠로 건너뛰기 CUPANET 히어로는 취미 개인 정보 보호 정책 공지사항 CUPANET 히어로는 취미 내비게이션 토글 내비게이션 토글 개인 정보 보호 정책 공지사항 django Markdown 적용 by mogiskim 2021년 7월 21일 2021년 7월 21일 마크다운 라이브러리 설치 pip install django-markdownx pip in...
This report updates in 15-Dec-2021
Created Date: | 2013-04-05 |
Changed Date: | 2021-04-01 |
Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host cupanet.com. Currently, hosted in Korea, Republic of and its service provider is Korea Telecom .
Latitude: | 37.568260192871 |
Longitude: | 126.97782897949 |
Country: | Korea, Republic of (KR) |
City: | Seoul |
Region: | Seoul-t'ukpyolsi |
ISP: | Korea Telecom |
HTTP Header information is a part of HTTP protocol that a user's browser sends to called Apache/2.4.41 (Unix) PHP/7.4.3 containing the details of what the browser wants and will accept back from the web server.
Date: | Wed, 15 Dec 2021 00:22:59 GMT |
Server: | Apache/2.4.41 (Unix) PHP/7.4.3 |
X-Powered-By: | PHP/7.4.3 |
Link: | |
Keep-Alive: | timeout=5, max=100 |
Connection: | Keep-Alive |
Transfer-Encoding: | chunked |
Content-Type: | text/html; charset=UTF-8 |
ipv4: | IP:175.192.165.111 ASN:4766 OWNER:KIXS-AS-KR Korea Telecom, KR Country:KR |
ns: | ns.gabia.co.kr. ns1.gabia.co.kr. ns.gabia.net. |
soa: | ns.gabia.co.kr. hosting.gabia.com. 2021040122 1800 600 1209600 86400 |
txt: | "v=spf1 ip4:175.192.165.111 ~all" |
콘텐츠로 건너뛰기 CUPANET 히어로는 취미 개인 정보 보호 정책 공지사항 CUPANET 히어로는 취미 내비게이션 토글 내비게이션 토글 개인 정보 보호 정책 공지사항 django Markdown 적용 by mogiskim 2021년 7월 21일 2021년 7월 21일 마크다운 라이브러리 설치 pip install django-markdownx pip install Pygments 프로젝트/settings.py 안에 추가 INSTALLED_APP =[ # 생략 'markdownx', ] MARKDOWNX_MARKDOWN_EXTENSIONS = [ 'markdown.extensions.extra', 'markdown.extensions.toc', 'markdown.extensions.codehilite', 'markdown.extensions.fenced_code', ] MARKDOWNX_MARKDOWN_EXTENSION_CONFIGS = { 'markdown.extensions.codehilite':… 더 보기 » django Markdown 적용 파이썬 가상환경 만들기 (virtualenv) by mogiskim 2021년 7월 13일 2021년 7월 13일 virtualenv 설치 pip install virtualenv 폴더 생성 mkdir 프로젝트폴더 가상환경 생성 virtualenv 프로젝트폴더 cd 프로젝트폴더 가상환경 진입 source ./bin/activate 가상환경 나오기 deactivate Django – 23 by mogiskim 2021년 7월 9일 2021년 7월 9일 Oauth (장고에서 제공하는 라이브러리인 allauth 사용) 라이브러리 설치 pip install "django-allauth==0.37.0" settings.py 안에 INSTALLED_APPS = [ ~~~ 'django.contrib.sites', 'allauth', 'allauth.account', # 소셜로그인 회원정보 관리 앱 'allauth.socialaccount', 'allauth.socialaccount.providers.kakao', # 연동 필요… 더 보기 » Django – 23 Django – 22 by mogiskim 2021년 7월 9일 2021년 7월 9일 미들웨어를 통해 중복로그인 방지 및 중복로그인 시 메시지 출력 accounts/middleware.py 작성 from django.conf import settings from django.contrib import messages from django.contrib.auth import logout as auth_logout from django.shortcuts import redirect from… 더 보기 » Django – 22 Django – 21 by mogiskim 2021년 7월 8일 2021년 7월 9일 Django 세션 djang 세션 개념 세션 미들웨어는 클라이언트마다 세션을 생성하고, 세션마다 세션ID값을 부여한다 만들어진 세션ID는 쿠키로 클라이언트에게 전달한다 세션은 dict 형태로 클라이언트 별 데이터를 저장한다 세션은 저장된 클라이언트 별 데이터를… 더 보기 » Django – 21 Django – 20 by mogiskim 2021년 7월 8일 2021년 7월 8일 장고 내장기능으로 로그인/로그아웃 페이지 구현 로그인이 완료되면 글로벌 세팅에 있는 LOGIN_REDIRECT_URL 위치로 가게 됨 (기본: /accounts/profile/) urls.py 안에 from django.conf import settings from django.contrib.auth import views as auth_views urlpatterns =… 더 보기 » Django – 20 Django – 19 by mogiskim 2021년 7월 7일 2021년 7월 8일 Signals 타 언어의 이벤트와 같은 개념 회워가입 시 자동 이메일 발송 예제 models.py 안에 from django.conf import settings from django.db import models from django.contrib.auth.models import User from django.core.mail import send_mail… 더 보기 » Django – 19 Django – 18 by mogiskim 2021년 7월 7일 2021년 7월 7일 회원관리 Form 장고 제공 클래스 views.py 안에 from django.shortcuts import render, redirect from django.contrib.auth.forms import UserCreationForm from django.conf import settings def signup(request): if request.method == 'POST': form = UserCreationForm(request.POST) if… 더 보기 » Django – 18 Django – 17 by mogiskim 2021년 7월 7일 2021년 7월 8일 Django 인증 모듈 활용 인증모듈 기능 확인 from django.contrib.auth import get_user_model User = get_user_model() user = User.objects.first() user.is_anonymous #현재 로그인 여부를 확인 가능 user.is_authenticated #현재 로그인 여부를 확인 가능 user.password… 더 보기 » Django – 17 Django – 16 by mogiskim 2021년 7월 6일 2021년 7월 8일 장고에서 관리하는 파일 static file 개발 리소스 파일 앱별로 관리됨 실제 저장은 앱이름/static 에 위치하지만 settings.py 내에 STATIC_URL 옵션에 지정된 문자열로 호출해야 한다 EX> HTML에서 static/파일.png 지정하면 실제로 파일은 ‘앱이름/static’… 더 보기 » Django – 16 1 2 3 … 21 다음 » 검색어: 최신 글 django Markdown 적용 파이썬 가상환경 만들기 (virtualenv) Django – 23 Django – 22 Django – 21 올라온 글 올라온 글 월 선택하기 2021년 7월 (20) 2021년 6월 (5) 2021년 4월 (3) 2021년 3월 (5) 2021년 2월 (6) 2021년 1월 (10) 2020년 11월 (1) 2020년 9월 (1) 2020년 8월 (22) 2020년 7월 (1) 2020년 6월 (1) 2020년 5월 (2) 2020년 4월 (3) 2020년 3월 (2) 2020년 2월 (3) 2020년 1월 (5) 2019년 12월 (2) 2019년 11월 (1) 2019년 8월 (1) 2019년 7월 (2) 2018년 8월 (1) 2018년 6월 (1) 2018년 4월 (1) 2018년 3월 (1) 2017년 11월 (3) 2017년 9월 (3) 2017년 8월 (14) 2017년 7월 (2) 2017년 3월 (2) 2017년 2월 (1) 2017년 1월 (2) 2016년 12월 (1) 2016년 10월 (1) 2016년 9월 (1) 2016년 8월 (1) 2016년 7월 (5) 2016년 6월 (1) 2016년 5월 (5) 2016년 4월 (1) 2016년 3월 (2) 2016년 2월 (3) 2016년 1월 (1) 2015년 8월 (1) 2015년 7월 (3) 2015년 6월 (2) 2015년 5월 (1) 2015년 3월 (2) 2015년 2월 (1) 2015년 1월 (4) 2014년 12월 (3) 2014년 11월 (1) 2014년 10월 (3) 2014년 9월 (4) 2014년 8월 (3) 2014년 7월 (1) 2014년 5월 (1) 2014년 4월 (3) 2014년 3월 (1) 2014년 2월 (1) 2014년 1월 (4) 2013년 12월 (3) 2013년 11월 (5) 2013년 10월 (3) 2013년 9월 (5) 2013년 8월 (1) 카테고리 Database (10) Mysql (8) postgresql (2) IoT (3) Hbase (1) Kafka (1) Zookeeper (1) 미분류 (6) 서버 (80) AIX (1) 리눅스 (64) 인공지능 (10) 딥러닝 (6) 머신러닝 (2) 일상 (3) 넷핵 (1) 맛집 (1) 여행 (1) 클라우드 (22) 오픈스택 (22) 프로그래밍 (79) C# (8) C언어 (14) Java (1) Python (51) 최신 댓글 APACHE 설정파일(httpd.conf) 찾기 의 [email protected] APACHE 설정파일(httpd.conf) 찾기 의 안녕하세요 메타 로그인 엔트리 피드 댓글 피드 WordPress.org Neve | Powered by WordPress
http://cupanet.com/?p=1630
http://cupanet.com/
http://cupanet.com/?cat=20
http://cupanet.com/?paged=2
http://cupanet.com/?p=1653
http://cupanet.com/?cat=21
http://cupanet.com/?paged=21
http://cupanet.com/?cat=14
http://cupanet.com/?p=1658
http://cupanet.com/wp-login.php
http://cupanet.com/?cat=7
http://cupanet.com/?cat=6
http://cupanet.com/?cat=9
http://cupanet.com/?cat=24
http://cupanet.com/?cat=23
Whois is a protocol that is access to registering information. You can reach when the website was registered, when it will be expire, what is contact details of the site with the following informations. In a nutshell, it includes these informations;
Domain Name: cupanet.com
Registry Domain ID: 1791542808_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.gabia.com
Registrar URL: https://www.gabia.com
Updated Date: 2021-04-01T14:20:16Z
Creation Date: 2013-04-05T15:00:00Z
Registrar Registration Expiration Date: 2024-04-04T15:00:00Z
Registrar: gabia
Registrar IANA ID: 244
Reseller: gabia
Domain Status: ok https://icann.org/epp#ok
Registry Registrant ID: Not Available From Registry
Registrant Name: KIM SUNGMOK
Registrant Organization:
Registrant Street: Nogosan-dong, Mapo-gu, Seoul
Registrant City: Seoul
Registrant State/Province:
Registrant Postal Code: 121100
Registrant Country: KR
Registrant Phone: +82.27037711
Registrant Phone Ext:
Registrant Fax:
Registrant Fax Ext:
Registrant Email: [email protected]
Registry Admin ID: Not Available From Registry
Admin Name: KIM SUNGMOK
Admin Organization:
Admin Street: Nogosan-dong, Mapo-gu, Seoul
Admin City: Seoul
Admin State/Province:
Admin Postal Code: 121100
Admin Country: KR
Admin Phone: +82.27037711
Admin Phone Ext:
Admin Fax:
Admin Fax Ext:
Admin Email: [email protected]
Registry Tech ID: Not Available From Registry
Tech Name: KIM SUNGMOK
Tech Organization:
Tech Street: Nogosan-dong, Mapo-gu, Seoul
Tech City: Seoul
Tech State/Province:
Tech Postal Code: 121100
Tech Country: KR
Tech Phone: +82.27037711
Tech Phone Ext:
Tech Fax:
Tech Fax Ext:
Tech Email: [email protected]
Name Server: ns.gabia.co.kr
Name Server: ns1.gabia.co.kr
Name Server: ns.gabia.net
DNSSEC: unsigned
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: 82.28293543
URL of the ICANN WHOIS Data Problem Reporting System: http://wdprs.internic.net/
>>> Last update of WHOIS database: 2023-12-27T01:30:07Z <<<
For more information on Whois status codes, please visit https://icann.org/epp
TERMS OF USE: The Data in Gabia' WHOIS database is provided by Gabia
for information purposes, and to assist persons in obtaining
information about or related to a domain name registration record.
Gabia does not guarantee its accuracy. By submitting a WHOIS query,
you agree that you will use this Data only for lawful purposes
and that, under no circumstances will you use this Data to:
(1) allow, enable, or otherwise support the transmission of mass
unsolicited, commercial advertising or solicitations via e-mail(spam);
or (2) enable high volume, automated, electronic processes that apply to
Gabia (or its systems). Gabia reserves the right to
modify these terms at any time. By submitting this query,
you agree to abide by this policy.
REGISTRAR Gabia, Inc.
SERVERS
SERVER com.whois-servers.net
ARGS domain =cupanet.com
PORT 43
SERVER whois.gabia.com
ARGS cupanet.com
PORT 43
TYPE domain
DOMAIN
NAME cupanet.com
CHANGED 2021-04-01
CREATED 2013-04-05
STATUS
clientTransferProhibited https://icann.org/epp#clientTransferProhibited
NSERVER
NS.GABIA.CO.KR 43.201.170.100
NS.GABIA.NET 121.78.117.39
NS1.GABIA.CO.KR 20.200.205.248
REGISTERED yes
The following list shows you to spelling mistakes possible of the internet users for the website searched .