728x90
출처 : http://elkha-textcube.blogspot.com/2009/11/phpmyadmin-%EC%84%A4%EC%B9%98.html
1. 다운로드 (http://www.phpmyadmin.net/home_page/index.php)
2. 압축풀기
phpMyAdmin-3.4.6-all-languages.7z 압축파일를
C:\server\phpMyAdmin-3.4.6-all-languages 폴더에 풀어 둔다.
3. config.inc.php 파일 생성
C:\server\phpMyAdmin-3.4.6-all-languages\libraries\config.default.php 파일를
config.inc.php 복사한다.
4. 환경파일 수정(config.inc.php)
$cfg['PmaAbsoluteUri'] = 'http://localhost/mysql';
$cfg['blowfish_secret'] = 'cookie'; // cookie 값 입력 (아무거나 입력해도 됨)
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['port'] = '3306';
$cfg['Servers'][$i]['auth_type'] = 'cookie'; (작동 안되면 http 입력)
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = 'mysql 비밀번호';
5. httpd.conf 가상폴더 추가
Alias /mysql "C:/server/phpMyAdmin-3.4.6-all-languages"
<Directory "C:/server/phpMyAdmin-3.4.6-all-languages">
Options FollowSymLinks
DirectoryIndex index.html index.htm index.php *.jsp *.php
Order allow,deny
Allow from all
</Directory>
6. C:\Windows\php.ini 수정
주석 ; 제거
;extension=php_mysql.dll
;extension=php_mysqli.dll
1. 다운로드 (http://www.phpmyadmin.net/home_page/index.php)
2. 압축풀기
phpMyAdmin-3.4.6-all-languages.7z 압축파일를
C:\server\phpMyAdmin-3.4.6-all-languages 폴더에 풀어 둔다.
3. config.inc.php 파일 생성
C:\server\phpMyAdmin-3.4.6-all-languages\libraries\config.default.php 파일를
config.inc.php 복사한다.
4. 환경파일 수정(config.inc.php)
$cfg['PmaAbsoluteUri'] = 'http://localhost/mysql';
$cfg['blowfish_secret'] = 'cookie'; // cookie 값 입력 (아무거나 입력해도 됨)
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['port'] = '3306';
$cfg['Servers'][$i]['auth_type'] = 'cookie'; (작동 안되면 http 입력)
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = 'mysql 비밀번호';
5. httpd.conf 가상폴더 추가
Alias /mysql "C:/server/phpMyAdmin-3.4.6-all-languages"
<Directory "C:/server/phpMyAdmin-3.4.6-all-languages">
Options FollowSymLinks
DirectoryIndex index.html index.htm index.php *.jsp *.php
Order allow,deny
Allow from all
</Directory>
6. C:\Windows\php.ini 수정
주석 ; 제거
;extension=php_mysql.dll
;extension=php_mysqli.dll
728x90