가이드에 다음과 같이 나온다.

Rewrite를 사용할 수 없습니다.

다음 항목을 확인하십시오.  rewrite 모듈을 사용하지 않습니다. 만약 rewrite 모듈 설정을 올바르게 했는데도 모듈 사용 여부의 검사에 문제가 있는 경우 rewrite 모듈을 사용하지 않음을 선택하시고 이 부분을 건너 뛰시기 바랍니다. 지금 설정하지 않아도 설치 이후에 관리 패널의 서비스설정-서버 에서 rewrite 관련 설정을 할 수 있습니다.

1. 웹서버 설정에 mod_rewrite의 로딩이 포함되어야 합니다.
예: LoadModule rewrite_module modules/mod_rewrite.so

2. 웹서버 설정의 이 디렉토리에 대한 Options 항목에 FollowSymLinks가 포함되거나 All이어야 합니다.
예: Options FollowSymLinks
예: Options All

3. 웹서버 설정의 이 디렉토리에 대한 AllowOverride 항목에 FileInfo가 포함되거나 All이어야 합니다.
예: AllowOverride FileInfo
예: AllowOverride All

4. 위 2와 3의 문제는 아래 내용을 웹서버 설정에 포함시켜 해결할 수 있습니다.
<Directory "c:/apm_setup/htdocs/tc">
  Options FollowSymLinks
  AllowOverride FileInfo
</Directory>

이 말 한마디 더 넣어줬으면 덜 삽질했을텐데

AddModule mod_rewrite.c

나처럼 무지한 사람들은 헤매게 마련.

Posted by 알 수 없는 사용자
,

Maven plugin을 설치하고 다음과 같은 에러가 발생하였다.

Eclipse is running in a JRE, but a JDK is required
Some Maven plugins may not work when importing projects or updating source folders.

eclipse.ini를 열어서 다음을 추가해준다.

-vm
C:\Program Files\Java\jdk1.6.0_10\bin\javaw.exe
Posted by 알 수 없는 사용자
,

Uno

Computer/Terms 2008. 11. 6. 15:52

내가 아는 Uno는 피자집 밖에 없는데.

아는 사람이 물어서 궁금해서 찾아봤다.

Uno stands for Universal Network Objects. Uno is one of the accepted projects of OpenOffice.org.

Uno is the component model of OpenOffice.org. Uno offers interoperability between programming languages, other components models and hardware architectures, either in process or over process boundaries, in the Intranet as well as in the Internet. Uno components may be implemented in and accessed from any programming language for which a Uno implementation (AKA language binding) and an appropriate bridge or adapter exists.

The Uno web is organized as described in Uno/Meta/Organization.

Probably most interesting for many people is, what we are currently doing in Uno, which you can find in the efforts area. One of the bigger things is the extension of Binary Unos threading-model.

언제쯤 똑똑해지는 날이 올까?



Reference:
http://udk.openoffice.org/

Posted by 알 수 없는 사용자
,