'2010/01'에 해당되는 글 5건
A Mobile Ad Solution for iPhone Developers :: 2010/01/27 17:24
Moduad provides the virtual goods hosting and mobile ad solution for mobile applicaiton developers.
Captures from web:



Captures from app:



How to Change the Timezone in Linux :: 2010/01/22 13:23
# date
Thu Jan 21 23:19:04 EST 2010
# mv /etc/localtime /etc/localtime-old
# ln -sf /usr/share/zoneinfo/America/Los_Angeles /etc/localtime
# /usr/bin/rdate -s time-a.nist.gov
# date
Thu Jan 21 20:19:56 PST 2010
Install vsftpd FTP Server on Linux :: 2010/01/21 15:04
설치:
# yum install vsftpd
시작:
# service vsftpd start
패시브 모드 설정:
# vi /etc/vsftpd/vsftpd.conf
pasv_enable=YES
pasv_min_port=1024
pasv_max_port=1048
pasv_address=123.456.789.xxx
# yum install vsftpd
시작:
# service vsftpd start
패시브 모드 설정:
# vi /etc/vsftpd/vsftpd.conf
pasv_enable=YES
pasv_min_port=1024
pasv_max_port=1048
pasv_address=123.456.789.xxx
DWR Servlet Configuration :: 2010/01/21 10:32
아래와 같은 오류가 발생했을 경우, 크로스 도메인 허용이나 세션 쿠키명 등 파라미터를 살펴본다.
A request has been denied as a potential CSRF attack.
참조: http://directwebremoting.org/dwr/server/servlet/
A request has been denied as a potential CSRF attack.
참조: http://directwebremoting.org/dwr/server/servlet/
How To Test Sendmail from Terminal :: 2010/01/19 17:15
cat some_file.txt | mail -s "test mail" user@example.com

