쓰지않는게시판 3

APM(Maria DB) 설치법

APM이란 Apache2, Php, Mysql을 말합니다. 코드 란에 있는 내용은 전부 터미널에 입력하면 됩니다. 아파치를 설치합니다. apt install apache2 그후 웹주소창에 localhost 로 접속하여 Apache2 Ubuntu Default Page가 정상적으로 나오는지 확인합니다. maria DB를 설치합니다. apt install mariadb-server phpmyadmin을 사용할 것이기 때문에 마찬가지로 설치합니다. apt install phpmyadmin 이때 설치도중 apache2를 선택하고 비밀번호를 입력합니다. su 명령어를 입력하여 root계정으로 접속후에 다음 명령어를 실행합니다. mysql_secure_installation 그다음 비밀번호를 입력하고 yyy로 계속..

[WORDPRESS]DEBUG 보기

wordpress의 플러그인을 제작할때, 오류가 발생하면서 워드프레스 홈페이지의 화면이 아예 공백으로 나오는 경우가 있다. 이러한 경우에는 wordpress/wp-config.php파일을 다음과 같이 수정해 준다. ... /** * For developers: WordPress debugging mode. * * Change this to true to enable the display of notices during development. * It is strongly recommended that plugin and theme developers use WP_DEBUG * in their development environments. * * For information on other constant..