워드프레스 중복글 bypass
# Web&WAS2022. 10. 27. 07:30워드프레스 중복글 bypass

중복글 플러그인이 존재하지만 오토는 유료라서 수동으로 지워야하는 번거러움.. 귀찮다.. 등록할때 체크해서 중복글 bypass # 모듈선언 from wordpress_xmlrpc import Client from wordpress_xmlrpc import WordPressPost from wordpress_xmlrpc.methods import posts import pymysql wp = Client("https://[워드프레스주소]/xmlrpc.php", "[아이디]", "[비밀번호]") post = WordPressPost() post.title = 'My new title' post.content = 'This is the body of my new post.' post.terms_names = {..

워드프레스 중복글 삭제 플러그인
# Web&WAS2022. 10. 23. 07:23워드프레스 중복글 삭제 플러그인

Delete Duplicate Posts 플러그인설치. 검색! 활성화한 후 화면 제목으로 중복된 조건으로 해서 스캔! 스캔결과! 113개나 !! 삭제!

아파치 워드프레스 xmlrpc 차단 및 특정ip허용
# Web&WAS/Apache2022. 10. 20. 19:32아파치 워드프레스 xmlrpc 차단 및 특정ip허용

보안상 워드프레스의 xmlrpc는 취약하다 그래서 특정ip만 사용가능하게끔 httpd.conf에 아래와 같이 설정한 후 아파치 재기동 order by deny,allow deny from all allow from x.x.x.x order설정은 뒤에서부터 1순위이기때문에 위 설정은 1. allow 설정으로 특정ip만 허용하고 2. deny 설정으로 전부 차단 https://httpd.apache.org/docs/2.4/ko/sections.html 섹션 설정 - Apache HTTP Server Version 2.4섹션 설정 이 문서는 최신판 번역이 아닙니다. 최근에 변경된 내용은 영어 문서를 참고하세요. 설정파일에 있는 지시어는 서버 전체에 적용되거나, 특정 디렉토리, 파일, 호스트, URL에만 적용될..

워드프레스 설치
# Web&WAS2022. 10. 10. 10:45워드프레스 설치

다운로드 https://ko.wordpress.org/download/#download-install Download Download WordPress today, and get started on creating your website with one of the most powerful, popular, and customizable platforms in the world. ko.wordpress.org [daraksharavim.tistory.com]$ wget https://ko.wordpress.org/latest-ko_KR.tar.gz Requirements We recommend servers running version 7.4 or greater of PHP and MySQL versio..

아파치 일반사용자 권한 실행
# Web&WAS/Apache2022. 9. 20. 16:17아파치 일반사용자 권한 실행

아파치 실행 권한 수정후 시작시 아래와 같이 에러 발생[darksharavim.tistory.com] ./apachectl start (13)Permission denied: AH00072: make_sock: could not bind to address [::]:80 (13)Permission denied: AH00072: make_sock: could not bind to address 0.0.0.0:80 no listening sockets available, shutting down AH00015: Unable to open logs httpd파일 권한을 아래와 같이 변경(아파치 설치경로/bin 폴더로 이동)[darksharavim.tistory.com]chown root:[사용자명] httpd..

image