php 썸네일형 리스트형 [PHP] oracle "set names utf8" 효과 내기 putenv("NLS_LANG=KOREAN_KOREA.UTF8"); oracle 연결 전에 해당 환경설정을 해준후 연결을 맺으면mysql에서 'set names utf8'을 한 효과가남. 더보기 [PHP] date 함수 사용시 경고.. Warning: date() [function.date]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. 위와 같은 경고가 뜬다면.. php.ini 파일에서 date.timezone을 설정해주면됨. 주석 제거를 한 후 asia/seoul을 입력해주고 서버 재시작. date.timezone=asia/seoul 더보기 [CodeIgniter]index.php 없애기. 아파치 vhost 잡아주는 부분에서 RewriteEngine On RewriteCond $1 !^(index\.php|/asset/*|/images/*|/js/*|/css/*|robots\.txt|/favicon\.ico) RewriteRule ^(.*)$ /index.php/$1 [L] 추가해줄것! + mod_rewrite를 해줄경우에 CI에서도 자체적으로 추가해줄 부분이 있음. system/core/URI.php파일내에서 if (strpos($uri, $_SERVER['SCRIPT_NAME']) === 0) { $uri = substr($uri, strlen($_SERVER['SCRIPT_NAME'])); } elseif (strpos($uri, dirname($_SERVER['SCRIPT_NAME'.. 더보기 이전 1 2 3 4 5 6 7 8 ··· 11 다음