본문 바로가기

728x90
반응형
SMALL

Programming | 오류&해결

(9)
[ eclipse git 연동 ] eclipse git-receive-pack not permitted 오류 해결 git-receive-pack not permitted~ 메세지가 뜨거나 로그인 창이 반복하여 뜨는 상황입니다. 이는 입력한 user, password 정보가 잘못되서 그렇습니다. user 에는 github 계정 ex) user@email.com password 에는 github 계정 비밀번호가 아니라 토큰 번호 *토큰 번호 확인 경로 https://github.com/settings/tokens GitHub: Let’s build from here GitHub is where over 100 million developers shape the future of software, together. Contribute to the open source community, manage your Git rep..
[ APM ] 기본 세팅 by xampp https://www.apachefriends.org/download.html Download XAMPP Includes: Apache 2.4.56, MariaDB 10.4.28, PHP 8.0.28 & PEAR + SQLite 2.8.17/3.38.5 + multibyte (mbstring) support, Perl 5.34.1, ProFTPD 1.3.6, phpMyAdmin 5.2.1, OpenSSL 1.1.1t, GD 2.2.5, Freetype2 2.4.8, libpng 1.6.37, gdbm 1.8.3, zlib 1.2.11, expat 2.0.1, www.apachefriends.org # C:\Windows\System32\drivers\etc\hosts 에서 도메인 추가(세팅) # 세팅한 ..
[ 아파치 apache ] "AH00558: httpd: Could not reliably determine the server's fully qualified domain..." 오류 해결법 httpd.conf 파일에 ServerName 주석해제 ServerName localhost:80
[ 아파치 apache ] "The Requested operation has failed" 오류 해결법 php와 apache 연동할 때 apache/conf/httpd.conf 에 아래와 같은 문구를 추가해줬었는데요. LoadModule php8_module "C:/php8/php8apache2_4.dll" AddType application/x-httpd-php .html .php AddHandler application/x-httpd-php .php PHPIniDir "C:/php8" php 8.0 이상부터는 "php8_module" 대신 "php_module" 이라고 써주면 됩니다. LoadModule php_module "C:/php8/php8apache2_4.dll" AddType application/x-httpd-php .html .php AddHandler application/x-httpd..
[ VSCode ] .html파일에서 php 하이라이트 방법 | 흰 글자 html 파일에서 따로 설정을 해주지 않으면 가 하얀 글자로 뜨면서 php 문법 하이라이트가 되지 않습니다. 예를 들면, 주석처리는 //, /* */ 등인데 단축키 ctrl + /를 누르면 아래처럼 html파일로 인식되어 이 나옵니다. 그래서 php 파일로 잠시 바꿔서 보곤 했는데 해결방법이 있습니다. 1. ctrl + , 을 눌러 Settings 진입 2. 'php' 검색 3. Edit in settings.json 클릭 이렇게 생겼는데 맨 아래줄에 html에서 php 하이라이트를 주도록 입력해줍니다. 4. "files.associations": {"*.html":"php" } 입력 맨 마지막 줄에 "" 다음에 , 입력 후 엔터쳐서 4. 내용 입력하시면 됩니다. 5. html 파일에서 php 문법들이 ..
[ VSCode ] 경로복사 \ 대신 /로 바꾸는법 https://stackoverflow.com/questions/63910258/vscode-copy-relative-path-with-posix-forward-slashes VSCode Copy Relative Path with posix forward slashes VSC newbie here. I'm trying to right-click on my projects' files and selecting Copy Relative Path, the thing is I get the path like this: node_modules\bootstrap\dist\css\bootstrap.min.css when what I stackoverflow.com 경로복사를 자주 하는편인데 기존에는 아래처럼 나왔습니..
Git 연동부터 여러명이 함께하는 프로젝트까지 매번 할 때마다 구글링하고 참조했던 게시글 찾는 것도 힘들어서 한번 정리해놓으려고 합니다. 1. git 설치 https://git-scm.com/download/win 2. git config git config --global user.name "vvuru" git config --global user.email "wown5398@gmail.com" 3. 과정 로컬 저장소를 생성 로컬 저장소에 커밋 원격 저장소에 연결 원격 저장소에 푸쉬 4. 프로젝트
FE 개발환경의 이해와 실습 ver) webpack 5.0 * 사진이 많아서 키보드 넘버패드 왼쪽에 있는 'Page Up' 과 'Page Down'을 사용하여 보시면 편합니다! [ 강의정보 ] https://www.inflearn.com/course/%ED%94%84%EB%A1%A0%ED%8A%B8%EC%97%94%EB%93%9C-%EA%B0%9C%EB%B0%9C%ED%99%98%EA%B2%BD# 프론트엔드 개발환경의 이해와 실습 (webpack, babel, eslint..) - 인프런 | 강의 이미 만들어 놓은 개발 환경을 이해할 수 있어요. 처음부터 직접 개발 환경을 만들 수 있어요., - 강의 소개 | 인프런... www.inflearn.com https://jeonghwan-kim.github.io/series/2019/12/09/frontend-dev..

728x90
반응형
LIST