티스토리 뷰
목표 = 사이트 이전 + /wp 경로를 / 로 이전
웹 = 압축하여 FTP로 전송시키고 이전 서버에 압축 해제
DB = MySQL Workbench > Navigator > Management > Data Export 로 내보내고 이전서버에 Data Import/Restore 로 복원
컨텐츠 =
SET SQL_SAFE_UPDATES=0;
# 사이트 기본 경로 설정
update wp_options set option_value='http://{도메인}' where option_name='siteurl';
update wp_options set option_value='http://{도메인}' where option_name='home';
# 컨텐츠 도메인 클리어
update wp_posts set post_content=replace(post_content,'http://{도메인}','') where post_content like '%http://{도메인}%';
update wp_postmeta set meta_value=replace(meta_value,'http://{도메인}','') where meta_value like '%http://{도메인}%';
# 컨텐츠 경로 업데이트
update wp_posts set post_content=replace(post_content,'/{경로}/','/') where post_content like '%/{경로}/%';
update wp_postmeta set meta_value=replace(meta_value,'/{경로}/','/') where meta_value like '%/{경로}/%';
템플릿 =
SELECT * FROM wp_options where option_name in ('template','stylesheet');
/wp-content/themes/{템플릿}/*
파일들에 대해 경로수정
'웹프로그래밍 > PHP' 카테고리의 다른 글
| 그누보드4 가변 파일 (다중 파일 업로드) 웹접근성 개선 (0) | 2015.01.12 |
|---|---|
| PHP 다국어 지역화 gettext() *.po *.mo (1) | 2015.01.06 |
| IIS 워드프레스 고유주소(Permalink) URL 재작성(ReWrite) 설정 (1) | 2014.12.16 |
| IIS 워드프레스 권한설정 for 업데이트 (0) | 2014.12.16 |
| [CodeIgniter] Localization 위한 Language Helper (0) | 2014.10.14 |
댓글
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- laravel
- Prototype
- JSON
- centos
- JQuery
- iphone
- IOS
- IE
- git
- javascript
- PHP
- nodejs
- Mac
- Debug
- 워드프레스
- ASP
- nginx
- mssql
- CSS
- 안드로이드
- Linux
- Docker
- iis
- Android
- API
- 한글
- sencha touch
- macos
- classic asp
- Wordpress
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | ||||||
| 2 | 3 | 4 | 5 | 6 | 7 | 8 |
| 9 | 10 | 11 | 12 | 13 | 14 | 15 |
| 16 | 17 | 18 | 19 | 20 | 21 | 22 |
| 23 | 24 | 25 | 26 | 27 | 28 | 29 |
| 30 |
글 보관함