티스토리 뷰
*Framework 활용 Eclipse 설치 구성
1. JRE(Java SE Runtime Environment)
2. Ecilpse PDT All In Ones
3. Subversive
4. Eclipse Perferences & Configuration 
5. 윈도우용 tortoiseSvn
6. postgrsql
* xampp 다운로드
xampp 1.7.3 최신 버전 설치
PHP.INI 설정
extension=php_pdo_pgsql.dll
extension=php_curl.dll
zend_extension = "C:\xampp\php\ext\php_xdebug.dll" 해지
[XDebug]
debug.remote_enable=1
zend_debugger.allow_hosts=127.0.0.1/32
zend_debugger.expose_remotely=always
xdebug.default_enable = On
xdebug.dump_once = On
xdebug.dump_globals = On
xdebug.dump_undefined = On
xdebug.dump.REQUEST = *
xdebug.dump.SERVER = REQUEST_METHOD,REQUEST_URI,HTTP_USER_AGENT
xdebug.trace_format = 0
xdebug.auto_trace = Off
xdebug.trace_output_dir = D:\PDT\workspace\trace
xdebug.trace_output_name = trace.%c.%p
xdebug.profiler_output_dir = "D:\ProfilerLog\"
xdebug.profiler_enable = off
xdebug.profiler_enable_trigger = 1
xdebug.collect_params =1
xdebug.collect_includes = On
xdebug.collect_return = On
xdebug.show_mem_delta = On
* 아파치 버츄얼 호스트 설정
<VirtualHost \*:80>
ServerName pm.com
ServerAdmin yakuyaku@gmail.com
DocumentRoot "D:\myIDE\workspace\PluginManager"
<Directory "D:\myIDE\workspace\PluginManager">
Options MultiViews
Options FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
* pear 업그레이드 및 설치
pear channel-update pear.php.net
pear upgrade pear
pear channel-discover pear.phpunit.de
pear channel-discover components.ez.no
pear channel-discover pear.symfony-project.com
pear install phpunit/PHPUnit
http://pear.php.net/
pear install pear/File_Mogile 등을 이용하여 여러 패키지 설치
* PHP TOOLS 설치
PHPUnit 이클립스 플러그인 입니다.
메뉴 -> help -> install and update 추가
주소 : http://www.phpsrc.org/eclipse/pti
* 개발 환경
. General
General > Content Types > Text > HTML > Default encoding = UTF-8 |
General > Content Types > Text > PHP Content Type > Default encoding = UTF-8 |
General > Content Types > Text > CSS > Default encoding = UTF-8 |
General > Content Types > Text > JavaScript Source File > Default encoding = UTF-8 |
General > Editors > Text Editors > Insert spaces for tabs 체크 |
General > Workspace > Text file encoding = Other, UTF-8 |
General > Workspace > New text file line delimiter = Other, Unix |
2. Web
Web > CSS Files > Editor > Indent using tabs 체크 |
Web > CSS Files > Editor > Indentation size = 4 |
Web > HTML Files > Editor > Indent using tabs 체크 |
Web > HTML Files > Editor > Indentation size = 4 |
Web > JavaScript > Code Style > Formatter > Edit 선택 후 나오는 새 창에서 > Indentation > Tab policy = Spaces only > Indentation > Indentation size = 4 |
3. PHP
PHP > Code Style > Formatter > Tab policy = Spaces |
PHP > Code Style > Formatter > Indentation size = 4 |
PHP > Editor > Save Actions > Remove trailing whitespace 체크 |
4. XML
XML > XML Files > Editor > Indent using spaces 체크 |
XML > XML Files > Editor > Indentation size = 4 |
'웹개발 > Tools' 카테고리의 다른 글
머큐리얼 사용법 정리 (0) | 2011.07.20 |
---|---|
branches, tags, trunk 에 대한 개념 (1) | 2011.06.09 |
git 기본 튜토리얼 (0) | 2011.06.07 |
셀레니움 사용! (0) | 2011.04.26 |
SVN 명령어. (0) | 2010.09.01 |