검색결과 리스트
글
LANGUAGE/!$%!% ERROR NOTE
2016. 1. 26. 00:51
///// 에러
Uncaught SecurityError: Failed to execute 'texImage2D' on 'WebGLRenderingContext': The cross-origin image at file:///D:/Workspaces/webgl/lesson05/nehe.gif may not be loaded.
///// 문제
기본적으로 보안상 file시스템(?)으로 접속하면 접근이 안된다.
///// 해결
chrome을 열 때 옵션을 주면 된다.
1. cmd (command line) 열기
[Win] + [R]를 누르고 실행창이 뜨면 cmd 입력
2. Chrome이 설치된 폴더로 이동
cd C:\Program Files <x86>\Google\Chrome\Application
3. 파일 접근 허용 옵션을 사용하여 실행
chrome --allow-file-access-from-files
///// 참고
[Chrome] 크롬의 유용한 옵션들:
'LANGUAGE > !$%!% ERROR NOTE' 카테고리의 다른 글
groovy/lang/GroovyObject (0) | 2016.02.07 |
---|---|
[Java] java.util.map 버그? (0) | 2016.02.07 |
[Tomcat] java.net.BindException: Address already in use: JVM_Bind (0) | 2016.01.18 |
[Windows] Windows SmartScreen에서 인식할 수 없는 앱을 시작하지 못하게 했습니다. 이 앱을 실행하면 PC가 위험에 노출될 수 있습니다. (0) | 2016.01.15 |
[ERWin] ORA-01041: 내부오류. hostdef 확장이 존재하지 않습니다. (0) | 2016.01.15 |