폴더 권한 : chmod 777 -R /var/www/myproject

 풀더 소유자 : chown -R apache /var/www/myproject

 selinux 0

 

 

위에는 임시 방법이다. 해보고 다시 초기 상태로변경 후 원인 파악만

'IT > PHP' 카테고리의 다른 글

PHP 글자 자를때 글자 깨짐  (0) 2020.11.25
코드이그나이터4 url public 제거  (0) 2020.09.13
session_register 대체  (0) 2020.08.24

mariadb 10, mysql 시간설정 (global.time_zone, session.time_zone, system_time_zone)

 

참고 문서 : dev.mysql.com/doc/refman/8.0/en/time-zone-support.html

 

MySQL :: MySQL 8.0 Reference Manual :: 5.1.15 MySQL Server Time Zone Support

5.1.15 MySQL Server Time Zone Support This section describes the time zone settings maintained by MySQL, how to load the system tables required for named time support, how to stay current with time zone changes, and how to enable leap-second support. Begi

dev.mysql.com

 

작업전에 쿼리를 실행하면 

select @@global.time_zone,@@session.time_zone,@@system_time_zone;

 

아래처럼 나온다

@@global.time_zone @@session.time_zone @@system_time_zone
SYSTEM SYSTEM UTC

 

 

set time_zone='Asia/Seoul'; 를 실행하면

Lookup Error - MySQL Database Error: Unknown or incorrect time zone: 'Asia/Seoul' 에러를 띄우고

 

 

서버 시간대 추가

# mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root -p mysql
# mysql_tzinfo_to_sql  /usr/share/zoneinfo/Asia/Seoul KST

'IT > IT' 카테고리의 다른 글

윈도우 10 숨긴파일 찾기  (0) 2020.12.11
컴퓨터 마우스 찾는 법  (0) 2020.11.25
크롬 다운로드 위치 변경  (0) 2020.11.25

HTML에서 글자 깸김 해결 방법

<html>
 <head>
  <meta charset="UTF-8">
 </head>
 <body>
  
 </body>
</html>

위에 처럼 head에 <meta charset="UTF-8">를 널어준다

'IT > 웹 프로그래밍' 카테고리의 다른 글

postman 설치/사용법 (포스트맨) 간단한 사용법  (0) 2020.12.10
Html table <br>  (0) 2020.05.19
HTML 이미지 태그 img 정렬/크기  (0) 2018.06.30

숨긴파일을 찾을 폴더를 연다

왼쪽상단 위 보기를 클릭한다.

숨긴학목 체크표시 체크

반투명하게 숨긴 파일들이 나온다.

www.postman.com/downloads/

 

Download Postman | Try Postman for Free

Try Postman for free! Join 13 million developers who rely on Postman, the collaboration platform for API development. Create better APIs—faster.

www.postman.com

 

 

들어간다 (이상한 곳 아니니까 불안하시면 구글에 postman download 검색 하셔서 들어가세요)

 

 

 

윈도우 아이콘 Download the App 클릭

그 후 사용하는 윈도우 bit에 따라 다운로드를 받고 실행한다.

 

실행하면 이런 로딩창이 나오고 postman이 실행 된다.

 

실행되면 회원가입 하거나 구글 로그인 하라고한다

 

구글 로그인을 선택해서 실행 했다.

 

로그인하면 이런 창이 나온다.

 

+ 모양 클릭

 

테스트 해보려는 전송 방식을 선택한다.

테스트로 구글에 GET으로 검색어를 넘겨보겠다.

 

전송방식은 GET URL은 www.google.com/search 를 입력한다.

 

 

Key 에는 q를 value에는 발톱깍기를 넣어서 테스트해본다.

 

Send로 전송

전송을 하면 정상적으로 아래 린턴값이 나온다.

'IT > 웹 프로그래밍' 카테고리의 다른 글

HTML 글자 깨짐  (0) 2020.12.13
Html table <br>  (0) 2020.05.19
HTML 이미지 태그 img 정렬/크기  (0) 2018.06.30

javascript/jquery - 체크박스 모두 체크/ 모두 체크 해제

 

 

<table>
	<thead>
		<tr>
			<td>
				<input type="checkbox" class="chk_all"/>
			</td>
		</tr>
	</thead>
	<tbody>
		<tr>
			<td>
				<td><input type="checkbox" class="chk_box" value="0"/></td>
			</td>
		</tr>
		<tr>
			<td>
				<td><input type="checkbox" class="chk_box" value="1"/></td>
			</td>
		</tr>
		<tr>
			<td>
				<td><input type="checkbox" class="chk_box" value="2"/></td>
			</td>
		</tr>
	</tbody>
</table>

<script language="javascript">
    $(document).ready(function(){
		 $(document).on("click",".chk_all",function(){
            $(".chk_box").prop("checked",$(this).prop("checked"));
        });
	});
</script>

substr() 함수를 사용할경우 문자가 깨지는 경우가 있다.

바이트 단위로 문자를 자르기 때문에 인코딩에 따라 문자 길이가 달라서 깨지는 경우가 있다.

 

그럴 경우

iconv_substr("문자열", 시작위치, 자를 위치, "인코딩 방식");

 

ex)

$str_test = "테스트 글자";

iconv_substr($str_test, 0, 5, "UTF-8");

$str_test = "테스트 글자";
iconv_substr($str_test, 0, 5, "UTF-8");

 

'IT > PHP' 카테고리의 다른 글

C.I4 Cache unable to write to //writable/cache/ 오류  (0) 2021.01.30
코드이그나이터4 url public 제거  (0) 2020.09.13
session_register 대체  (0) 2020.08.24

적용모습

시작(윈도우) 버튼을 클릭하고 마우스 검색 후 마우스 설정 변경 클릭

추가 마우스 옵션 클릭

포인터 옵션 클릭

<Ctrl> 키를 누르면 포인터 위치 표시(S) 왼쪽에 체크

 

'IT > IT' 카테고리의 다른 글

윈도우 10 숨긴파일 찾기  (0) 2020.12.11
크롬 다운로드 위치 변경  (0) 2020.11.25
CSS 로딩화면  (0) 2020.07.27

+ 최근 게시물