Tag Archives: config

websvn 설치

  svn 리파지토리를 웹으로 봐야 하는 일이 생겼다. 그래서 리파지토리 뷰를 위해 websvn 을 설치해보았다. 1. WebSVN 다운로드 – http://websvn.tigris.org 2. WebSVN 압축 해제 $ tar zxvf websvn-2.3.3.tar.gz $ mv websvn-2.3.3 /var/www $ cd /var/www $ ln -s ./websvn-2.3.3 websvn … Continue reading

Posted in SCM/ITS, WEB/WAS | Tagged , , , , , , | Leave a comment

wordpress 설정

  wordpress 설정 1. 플러그인/테마를 ftp 사용안하고 바로 설정 – wp-config.php 파일의 제일 마지막에 추가 if(is_admin()) { add_filter(‘filesystem_method’, create_function(‘$a’, ‘return “direct”;’ )); define( ‘FS_CHMOD_DIR’, 0751 ); } 2. 티스토리의 글을 워드프레스로 이전 http://code.google.com/p/wordpress-ttxml-importer/ 에서 최신버전 다운로드 wp-admin/import 디렉토리 생성 wp-admin/import에 … Continue reading

Posted in PHP/ASP | Tagged , , , , | Leave a comment