본문 바로가기
728x90

전체 글203

ICT란? ICT는 다음의 의미를 갖는 두문자어이다.정보 통신 기술(Information & Communication Technology): 단순하게 정보 기술(Information Technology, IT)로 쓸 때가 많다.https://ko.wikipedia.org/wiki/ICT http://m.blog.naver.com/sysoitdotcom/220292064807 http://bitnine.tistory.com/63 2016. 10. 2.
[PHP]imagecreate 사용방법 imagecreate 관련 함수를 사용할 수 없는 경우 아래와 같이 인스톨이 필요하다. [root@localhost /]# yum install php55w-gd 밑줄 부분은 본인의 서버 PHP 버전에 맞춰야 한다. 2016. 9. 28.
[PHP]mbstring 함수 사용방법 mbstring 관련 함수를 사용할 수 없는 경우 다음과 같이 나온다. [root@localhost /]# /usr/bin/phpize Can't find PHP headers in /usr/include/phpThe php-devel package is required for use of this command. 이럴 때 아래와 같이 인스톨이 필요하다. [root@localhost /]# yum install php55w-mbstring 밑줄 부분은 본인의 서버 PHP 버전에 맞춰야 한다. 2016. 9. 28.
[PHP]파라미터 값 변수로 받기 위한 설정 파라미터 값을 자동적으로 변수로 받고자 한다면 php.ini 파일에 register_globals를 on으로 변경해주면 된다. register_globals = On 단, PHP 버전이 5.5이상일 경우 보안상의 문제로 없어졌기 때문에 소스상에 @extract($_GET); 위와 같이 추가해야 한다. 2016. 9. 28.
Ionic 프로젝트 생성 프로젝트 폴더 경로로 이동하여 다음과 같이 적어준다. firstIonic은 프로젝트 명이다. C:\pjt>ionic start firstIonic tabs****************************************************** Dependency warning - for the CLI to run correctly, it is highly recommended to install/upgrade the following: Please install your Cordova CLI to version >=4.2.0 `npm install -g cordova` ******************************************************Creating Ionic ap.. 2016. 9. 28.
Ionic 개발환경 구축 1. 자바 JDK 설치 ( 1.7 버전 ) 2. Apache Ant 설치 3. 안드로이드 SDK 설치 4. Node.js 설치 5. Cordova 설치C:\Users\designer>npm install -g cordovanpm WARN deprecated minimatch@2.0.10: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issueC:\Users\designer\AppData\Roaming\npm\cordova -> C:\Users\designer\AppData\Roaming\npm\node_modules\cordova\bin\cordovacordova@6.3.1 C:\Users\designer\AppData\Roaming.. 2016. 9. 28.
728x90