케이스)

cafe24에 xe3설치전에 phpMyAdmin을 업로드하여

"http://url/phpMyAdmin/"  경로에소 db확인및 스키마 정의가능했음

xe3업로드 설치후 

"http://url/phpMyAdmin/" 로 접근하면 xe3첫화면으로 redirection됨.

 

 

xe3를 설치한 root의 .htaccess 파일을 확인하면 아래와 같이 phpMyAdmin 폴더 access접근 설정이 있고 없으면 추가한다.

아래 붉은색 phpMyAdmin 은 폴더명임. 바꿔서 세팅가능.

아래 내용으로 보면  http://url/phpMyAdmin/index.php 로 php파일명까지 정확히 지정해주면 phpMyAdmin페이지에 접근됨

 

.htaccess는 폴더 보안과 요청된 페이지의 접근(rewite engine)설정을 관리자가 필터링하여 좁힐수 있다.

 

 

----------------------------

.htaccess 파일 코드

 

   RewriteEngine On

    ...

 

     # allow for phpMyAdmin

     RewriteCond %{REQUEST_FILENAME} -f

     RewriteRule ^phpMyAdmin/.* - [L]

 

     RewriteCond %{REQUEST_FILENAME} -f

     RewriteRule ^index.php$ - [L]

     RewriteCond %{REQUEST_FILENAME} -f

     RewriteRule ^web_installer/index.php - [L]

     RewriteCond %{REQUEST_FILENAME} -d

     RewriteRule ^web_installer web_installer/index.php [L]

 

     RewriteCond %{REQUEST_FILENAME} -f

     RewriteRule \.php$ index.php [L]

     ...

----------------------------

'오픈소스 > Xpress Engine' 카테고리의 다른 글

xe3 smtp 설정 (gmail)  (0) 2020.09.25
[XE3] 익스텐션 추가후 사이트 에러  (0) 2020.07.26
XE3 설치  (0) 2020.05.26

찰스부코스키.
쉬운 언어로 자연스럽게 웃음을 주는 책.
작가가 들었던 바흐의 음악을 다운로드해서 들어본다.
작가의 느낌. 그가느꼈던 분위기를 알고싶으다.

 

 

프로젝트진행 방법으로 칸보드 이용하기

개인 프로젝트를 하면서 트레이닝용으로 칸보드를 이용해보고 있다.

todo, 일정관리용으로 진행해보고 있음.

PM, 비즈니스분석, 개발자 입장으로 칸반을 본다면 어떤 얘기들이 나올까? 

결과는 다음에......

 

php 7.2... 이상 버전에서 아래 url로 kanboard 다운로드하여 웹 install진행

 

 

https://kanboard.org/

 

Kanban Project Management Software - Kanboard

Kanboard has a very simple query language that offers the flexibility to find tasks in no time. Dynamically apply custom filters on the board to find what you need. Search by assignees, description, categories, due date, etc.

kanboard.org

 

'프로그래밍 > PHP' 카테고리의 다른 글

WAMP 설치  (0) 2020.05.26
Open Api Request / Response Schema구성&실행  (0) 2018.08.19
curl kakao open api 도서검색  (0) 2018.08.10
curl kakao open api 이미지검색하기  (0) 2018.08.06
curl kakao open api사용하기  (0) 2018.08.05

+ Recent posts