Platform/WAS
-
ASPPlatform/WAS 2015. 5. 16. 18:39
web.configthe rewrite sectionthe httpErrors section -C:\oracle\product\10.2.0\db_1\NETWORK\ADMIN\tnsnames.ora ORCL = (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = ...)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = orcl) ) ) Your_TNSNames_Alias = (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = ...)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = orcl)..
-
세션 - PHPPlatform/WAS 2014. 12. 7. 19:48
- 쿠키setcookie()$_COOKIE[] - 세션각 방문자에게 고유한 ID (UID)를 생성하고, 이 UID 를 기준으로 변수를 저장하여 작동합니다. UID 는 cookie 에 저장하거나, URL에 전달된다 session_start()해당 페이지에서 세션을 사용하겠다?session_destroy()$_SESSION[]unset() c.f. session_unregister() 참조 사이트:http://jun.hansung.ac.kr/ServerWP/PHP/PHP%20Sessions.html
-
PHPPlatform/WAS 2014. 11. 26. 18:15
$ rpm -qa | egrep "^(httpd|php|mysql)" | sort -n # yum install [httpd mysql mysql-server php] php-mysql # service httpd status # service mysqld status $ php -v # service httpd (start|restart) # chkconfig --list | egrep "mysqld|httpd" # chkconfig mysqld on $ php -r 'echo "Hello World\n";' ## /etc/php.inishort_open_tag = (Off|On)display_errors = (On|Off)register_globals = (Off|On)extension_dir="C:..
-
TomcatPlatform/WAS 2012. 6. 24. 22:36
웹 컨테이너 Tomcat 7.x : JSP 2.2, Servlet 3.0, Java >= 1.6Tomcat 6.x : JSP 2.1, Servlet 2.5, Java >= 1.5Tomcat 5.x : JSP 2.0, Servlet 2.4, Java >= 1.4Tomcat 4.x : JSP 1.2, Servlet 2.3, Java >= 1.3Tomcat 3.x : JSP 1.1, Servlet 2.2, Java >= 1.1 참조 사이트:http://tomcat.apache.org/whichversion.html
-
ISAPI(Internet Server Application Programming Interface)Platform/WAS 2010. 12. 5. 16:28
ISAPI(Internet Server API) 필터 Microsoft Urlscan Filter v3.1Internet Information Services 5.1, 6.0 or 7.0Windows Vista, Windows XP, Windows Server 2003, Windows Server 2008 WebKnight ISAPI Extension ECB(Extension Control Block) CHttpServer .GetExtensionVersion()=0 .TerminateExtension()=0 커맨드를 처리하는 멤버 함수는 CHttpServerContex 클래스 변수를 기본적으로 받아야 한다. /* or */ #pragma once // IsapiTest.h - IIS(Internet I..