본문 바로가기

General/Tip For Programming

[Tips] Redmine, new File upload Internal error

[Tips] Redmine, new File upload Internal error


레드마인에서 파일을 새로 올리려고 할때, 아래와 같은 에러가 나는 경우들이 있습니다.


 Internal error

 An error occurred on the page you were trying to access.
 If you continue to experience problems please contact your Redmine administrator for assistance.

 If you are the Redmine administrator, check your log files for details about the error.


* chown 명령을 통해, files 디렉토리의 소유자를 apache 로 변경한다.

* chmod 명령을 통해, files 디렉토리의 permission 을 변경한다.



chown

 $ chown -R apache:apache files/ 


chown 명령에서 apache:apache, 이부분을 보면 앞의 apache 는 소유자, 뒤의 apache는 소유 그룹입니다.


chmod

 $ chmod -R 777 files/ 


이거 저거 권한을 줘봤는데,, 잘 안되길래... 일단 777로, 이거 권한 뭘로 줘야하나요 ^^;;;;;;