[fullpage]ios에서 overflow 안될때

ios에서 fullpage 요소 밖에 fixed된 요소에 overflow가 작동 안할때 해결방법

<div id="gnb">...</div>
<div id="fullpage">
    <div class="section"></div>
    <div class="section"></div>
    <div class="section"></div>
</div>

<script type="text/javascript">
    $('#fullpage').fullpage({
        normalScrollElements: '#gnb'
    });
</script>

[javascript]아이프레임에서 부모 요소 접근하기

아이프레임안에서 iframe 속성 제어와 같이 바깥요소를 제어하려면 어떻게해야 할까

window.parent.document를 사용하면 바깥 document객체에 접근할 수 있다. 아래는 inner.html이 index.html의 ‘.hello’ 요소에 접근해서 텍스트를 변경하는 예제이다.

<!-- index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
    <iframe src="./inner.html" frameborder="0"></iframe>
</body>
</html>
<!-- inner.html -->
<div>...</div>
<script>
    var parent = window.parent.document;
    parent.querySelector('.hello').innerHTML = 'world';
</script>

[그누보드5] 스마트에디터 filetype not allowed 에러

그누보드 게시판에 설치된 스마트에디터를 사용해서 이미지를 업로드하는중 ‘filetype not allowed’ 또는 ‘file_upload failed’ 에러가 나면서 이미지 업로드가 실패하는 상황이 생겼다.


주로 아래와 같은 이유로 문제가 발생하는 듯 하다.

  1. 파일타입이 잘못된 경우
  2. 업로드 용량제한이 있는 경우
  3. 메모리 제한이 있는 경우
# .htaccess

php_value upload_max_filesize 30M
php_value post_max_size 30M
php_value max_file_uploads 30
php_value memory_limit 512M

.htaccess 의 설정값을 추가해 해결함