티스토리 뷰
반응형
15년 8월 기준.
WAMP 설치 후 세팅
PHP-PHP settings
short open tag on
mysql root 비밀번호 설정
use mysql;
update user set password=password('1234') where user='root';
delete from user where user='';
// 삭제하지 않으면 localhost 접근 가능
flush privileges;
config.inc.php
$cfg['Servers'][$i]['auth_type'] = 'cookie';
// 인증타입 설정
// config는 저장된 설정, http는 페이지접근시 로그인
$cfg['Servers'][$i]['password'] = '1234';
// 패스워드 설정
phpmyadmin 외부접속
alias폴더의 phpmyadmin.conf
<IfDefine APACHE24>
Order Deny,Allow
Allow from all
</IfDefine>
apache conf폴더의 httpd.conf
<Directory />
AllowOverride none
Order Deny,Allow
Allow from all
</Directory>
반응형
'Knowledge' 카테고리의 다른 글
Linux(리눅스) jar 관련 (0) | 2024.01.20 |
---|---|
HTML(에이치티엠엘) Site Refresh(사이트 리프레시) (0) | 2024.01.20 |
Google(구글) Data Studio(데이터 스튜디오) split 참고 (0) | 2024.01.20 |
Google Docs(구글 닥스) Spreadsheet(스프레드시) paste image in cell(셀 이미지 삽입) (0) | 2024.01.20 |
Apple iOS App(애플 아이오에스 앱) Package Name Confirm(패키지 이름 확인) (0) | 2024.01.14 |
댓글