members_area을 연동하기.
[1] 화면띄우기
members_area을 /var/www 밑에 풀기.
vi /etc/httpd/conf/httpd.conf
<VirtualHost *:80>
ServerName www.websec.local
ServerAlias websec.local *.websec.local
//index.php파일위치
DocumentRoot /var/www/websec.local/members_area
DirectoryIndex index.php
</VirtualHost>
//아래 같이 뜨면 성공
[2] db연동
//아래와 같은 곳에서 입력하면 db에 값이 들어가야한다.
2-1 테이블생성
mysql -u root -p
create database webestools;
use websestools;
CREATE TABLE `users` (
`id` bigint(20) NOT NULL,
`username` varchar(255) NOT NULL,
`password` varchar(255) NOT NULL,
`email` varchar(255) NOT NULL,
`avatar` text NOT NULL,
`signup_date` int(10) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2-2 연동
vi config.php
//밑에처럼 db아이디와 db비번 db이름을 연동
select * from users;
이제 회원가입을하면 값이 들어오는 것을 확인할 수 있다.
'Web Security' 카테고리의 다른 글
http (0) | 2019.03.25 |
---|---|
bee-box설치 (0) | 2019.03.21 |
php와mysql,zabbix설치 (Centos7) (0) | 2019.03.19 |
가상호스팅 (0) | 2019.03.18 |
웹(WWW) (3) | 2019.03.13 |