반응형 전체 글74 워드프레스 소스 로컬 설치 워드프레스 소스 로컬 설치 방법에 대해서 알아봅니다. 로컬에 php 개발환경 설정 먼저 php 개발환경이 설치되어있어야 합니다. 안되어있다면 아래 자료를 이용해주세요. php development environment on macos 1. "download xampp"로 검색 구글에서 "download xampp"로 검색 후 첫번째 링크 클릭 2. OSX용 XAMPP 최신버전 다운로드 클릭을 누르면 잠시 후 다운로드가 시작됩니다. 3. 더블 클릭시 오류 발생 설치를 위해 web.todaycoding.com 워드프레스 공식 사이트 Blog Tool, Publishing Platform, and CMS - WordPress.org Open source software which you can use to e.. 2023. 5. 11. mysql 사용자 추가, DB 생성, 권한부여 root 계정으로 mysql 접속하기 mysql -u root -p mysql 데이터베이스 선택 mysql 데이터베이스에 계정/디비/권한 등의 정보가 저장됩니다. use mysql; 사용자(+권한) 추가 # create user db_user_id@localhost identified by '패스워드'; create user accountbook@localhost identified by '패스워드'; FLUSH privileges; 데이터베이스 생성 # create database DB명 charset utf8mb4; create database accountbook charset utf8mb4; 데이터베이스/테이블에 사용자 권한 설정 # GRANT ALL privileges ON DB명.* TO db.. 2023. 5. 11. An error occurred when trying to authenticate to the FCM servers "Firebase Cloud Messaging"과 "Cloud Messaging" 둘다 활성화되어야 하는데 "Cloud Messaging"이 비활성화 되어서 발생한 문제입니다. 에러 내용 Unhandled error FirebaseMessagingError: An error occurred when trying to authenticate to the FCM servers. Make sure the credential used to authenticate this SDK has the proper permissions. 처리되지 않은 오류 FirebaseMessagingError: FCM 서버에 인증을 시도하는 동안 오류가 발생했습니다. 이 SDK를 인증하는 데 사용되는 자격 증명에 적절한 권한이 있는지.. 2023. 5. 9. firebase functions region firebase의 functions는 region 지정이 가능하다. 기본(지정 안하면)으로는 'us-central'로 되어있다. 이외의 region은 따로 지정을 해줘야 한다. 구현하는 입장 region이 기본값인 경우(us-central) exports.roomPush = functions.https.onCall(async (data, context) => { return 0 }) region이 서울인 경우 exports.roomPush = functions.region('asia-northeast3').https.onCall(async (data, context) => { return 0 }) 호출하는 입장 앱이 로컬 에뮬레이터를 바라보는 경우 리전 지정이 불가하다. 왜냐하면 배포가 되기 전까지는 지.. 2023. 5. 9. 이전 1 ··· 9 10 11 12 13 14 15 ··· 19 다음 반응형