ERROR.LOG

    모바일 웹에서 키패드 높이 계산

    // 모바일 키패드 높이 계산 if (window.visualViewport) { window.visualViewport.addEventListener('resize', () => { let visualViewportHeight = window.visualViewport?.height || 0; let windowHeight = window.innerHeight; let keyboardHeight = windowHeight - visualViewportHeight; setKeyboardHeight(keyboardHeight); }); }

    같은 내부망 모바일에서 웹서버 접속오류 해결방법

    같은 내부망 모바일에서 웹서버 접속오류 해결방법

    윈도우10 기준으로 "방화벽 및 네트워크보호 - 고급설정" 들어가시면 화면에 도메인프로필,개인프로필,공용프로필 정보가 보입니다. Windows Defender 방화벽 속성을 클릭하시고 "공용 프로필 탭" 을 클릭하신 후 인바운드 연결 설정이 차단(기본값) 으로 되어있는걸 "허용" 상태로 적용 시켜준 후 스마트폰으로 접속하니 해결되는 ..ㅠㅠ 저는 이방법으로 해결됐습니다 . 혹시 안되는 분들 이 방법으로 시도해보시고 화이팅하세요~^^

    Unable to install apache as a service for windows with name wampstackApache 해결법

    Bitnami 사용 중 발생하는 오류에 대한 글입니다. 생활코딩 수강하다가 이 오류 때문에 골치아팠기 때문에 올립니다. Unable to install apache as a service for windows with name wampstackApache 해결법 ------------------------------ 원문 : https://community.bitnami.com/t/unable-to-install-apache-as-a-service-for-windows-with-name-wordpressapache/40714 I found the log files and was finally able to get the WAMP stack to run. The httpd.conf contained the..