개발

2015/07/06

[Javascript] milliseconds to time string

›
function fnMsToTime (duration) { var milliseconds = parseInt ((duration% 1000 )/ 100 ) , seconds = parseInt ((duration/ 1000 ...
2015/07/01

[cakephp] .htaccess mod_rewrite edit for exclude folder or url

›
I making cakephp 3.0 web app. I want to cakephp exclude url for static html folder. /app/webroot/exclude/some.html /app/.htaccess ...
2015/06/24

[php] increase max upload size (wordpress)

›
PHP_INI_PERDIR Entry can be set in php.ini, .htaccess, httpd.conf or .user.ini (since PHP 5.3) php.ini upload_max_filesize = 32M post...

[apache] change run user, group

›
cakephp3 Permission denied error /etc/apache2/envvars # Since there is no sane way to get the parsed apache2 config in scripts...

[cakephp] not found the requested url (apache)

›
/etc/apache2/sites-available/default < Directory /> Options FollowSymLinks AllowOverride All </ Directory >...

[vagrant] synced folder owner change (apache)

›
vagrant file edit ## 공유 폴더 권한 변경 #config.vm.synced_folder "./source", "/var/www/source", create: true config...
2015/05/13

[php] 기본 페이징 코드

›
// 전체 게시물수 $totalCnt = $row['cnt']; // 한 페이지 게시글 수  $onePagePer = 15; // 전체 페이지 수 $totalPageCnt = ceil($totalCnt / $onePagePer); if...
2014/12/16

[MyBatis] parametertype string test (There is no getter for property named 'xxxx' in 'class java.lang.String')

›
Mybatis에서 parametertype이 String이나 int 같은 기본형인 경우 ============================= <if test="abc == null ">     ... </i...
2014/11/26

[JavaScript] 팝업창 열기, 닫기 (popup window open and close)

›
   function fnPopup() {     var popupOption = 'directories=no, toolbar=no, location=no, menubar=no, status=no, scrollbars=no, resizable...
2014/11/19

[RegExp] Non-breaking space (char code 160) replace

›
- Non-breaking space - ASCII character 160 - char code 160 - &#160 - \u00A0 - %A0 - &nbsp;  볼때는 일반적인 공백으로 보이지만 따로 처리해줘야 할 경우...
‹
›
홈
웹 버전 보기
Powered by Blogger.