홈페이지 제작할땐!

비버팩토리

반응형

it 언어 노트 34

최신php 환경에서 ci3 오류 대처 방법

안녕하세요 비버팩토리입니다.이번엔 최신 Php 환경에서 ci3 사용 하는 방법을 올려봅니다. 우선 ci3 최신버전을 다운 받습니다. https://codeigniter.com/download Welcome to CodeIgniterCodeIgniter 3 is the legacy version of the framework, intended for use with PHP 5.6+. This version is in maintenance, receiving mostly just security updates, and the current version is 3.1.13.codeigniter.com   일부 설정을 다 하고 난후에 (일부 설정은 config.php 에서 수정한것)계속해서 에러가 출력된다면 아..

코드이그나이터3 참고자료

안녕하세요! 비버팩토리입니다. php 프레임워크 코드이그나이터3 참고 자료를 올려봅니다.  매뉴얼이 제일 중요합니다.  https://ciboard.co.kr/user_guide/kr/ 코드이그나이터 3.0 한글매뉴얼© Copyright 2014 - 2016, British Columbia Institute of Technology. Last updated on Mar 21, 2016.ciboard.co.kr https://blog.naver.com/reviewer__/221406924336 코드이그나이터(CodeIgniter) 설치 및 DB연결1. 코드이그나이터(CodeIgniter) 란, 코드이그나이트는 PHP 프레임워크의 한 종류로써 다양한 라이브...blog.naver.com   여기서 php 최..

css 긴 문장 ... 으로 처리하기

안녕하세요 비버팩토리입니다.문장이 2줄 3줄씩 길게 나오면 ... 으로 처리 방법을 설명 해봅니다. 우선 아래 자료 참고하면됩니다.  글자 라인이 적을 경우 아래 css 참고하면 됩니다.대신에 width는 퍼센트로 하면 됩니다. px는 사이즈가 고정적으로 줄여서 나와서 반대로 퍼센트는 양쪽으로 골고루 보이기엔 퍼센트가 낫습니다. (상황에 맞게 처리하세요) .txt_line { width:70%; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }  멀티 사이즈로 할땐 아래 css 참고하면 됩니다..txt_post { display: -webkit-box; display: -ms-flexbo..

css 이미지 퀄리티 처리 방법 (feat.이미지 크롭)

안녕하세요. 비버팩토리입니다.이번 주제는 이미지 비율을 주는 방법을 설명합니다. 간단하게 사용법으로 설명 남깁니다. html5로 한다면 img 마크업와 figure 마크업 으로 클래스를 주고 아래 css 입히면 됩니다.크기는 고정이 아니라 레이아웃을 보면서 키워주면 됩니다..imgBox { width: 300px; height: 100%; object-fit: cover; display: block;}.parent { width: 300px; aspect-ratio: 16/9;} 그리고 php 에 경우 gd 라이브러리가 있어서 그걸 활용하면됩니다.그누보드에 경우에는 두번째 사이트 참고하면 됩니다.$thumb = get_list_thumbnail($bo_table, $wr_..

node ) Sharp 모듈 에러 날때

안녕하세요! 비버팩토리입니다. 이미지 리사이징 주제로 포스팅 글 올립니다. sharp 모듈 설치시 주의 사항이라고 참고 자료를 확인해서 해결 하려고 했는데 해결 되지 않는다 가상서버로 실행중이라서.. 아무리 해도 문제 해결 되지 않는다. npm install --platform=linux sharp  그래서 Sharp 모듈에서 깃헙 이슈를 찾다가 발견 했다. https://github.com/lovell/sharp/issues/4001 Error: Could not load the "sharp" module using the linux-x64 runtime on AWS Lambda · Issue #4001 · lovell/sharpPossible bug Is this a possible bug in a ..

centos7 glibc_2.27 not found

안녕하세요! 비버팩토리입니다.이번에 노드 설치 도중에 발생한 아래 처럼 에러가 나왔을때 대처방법에 대해서 설명 남깁니다. node: /lib64/libm.so.6: version `GLIBC_2.27' not found (required by node)node: /lib64/libc.so.6: version `GLIBC_2.25' not found (required by node)node: /lib64/libc.so.6: version `GLIBC_2.28' not found (required by node)node: /lib64/libstdc++.so.6: version `CXXABI_1.3.9' not found (required by node)node: /lib64/libstdc++.so.6: ve..

failed: WebSocket is closed before the connection is established.

개발자도구에서 failed: WebSocket is closed before the connection is established. 라는 문구가 나옵니다. 노란색 경고문으로 나오는데 혹시나 그대로 구글링으로 찾아봤더니.... (예측헌데 nginx 설정은 이미 프록시로 해놨고.. 여러 문제를 생각해야된다...) 어쨌든 이런 메시지가 나올때 아래 참고 자료를 확인하면 됩니다.  https://github.com/feathersjs/feathers/issues/1149 WebSocket is closed before the connection is established · Issue #1149 · feathersjs/feathersThe following errors are often found: websoc..

[Node] babel-node가 권한 문제로 실행이 안될 경우 #@babel-node

sh: /home/ec2-user/폴더이름/node_modules/.bin/babel-node: Permission denied권한이 없다고 나오는 경우가 있다. 처음에 위에 경로 그대로 나오니까 응용해서 아래 경로와 퍼미션을 조화롭게 입력하면됩니다.$ chmod 755 /home/ec2-user/폴더이름/node_modules/.bin/babel-node     참고 자료 :  https://dev-san.tistory.com/27 [Node] babel-node가 권한 문제로 실행이 안될 경우 #@babel-nodesh: /home/ec2-user/폴더이름/node_modules/.bin/babel-node: Permission denied 권한이 없다고 나오는 경우가 있다. $ chmod 755 /..

반응형