Fatal error: Class 'SoapClient' not found
Computer_IT/PHP2010. 11. 8. 00:36
반응형
C:\APM_Setup\Server\PHP5>php aa.php
Fatal error: Class 'SoapClient' not found in C:\APM_Setup\Server\PHP5\aa.php on line 5
C:\APM_Setup\Server\PHP5>
원인
php_soap.dll extension이 활성화 되어있지 않음
해결
php.ini 파일에 필요한 기능의 extension의 주석을 비활성화 한다.
기타
위의 방법대로 활성화 시켰음에도 안될경우. 체크 사항
php -i | more 옵션으로 [ Configuration File (php.ini) Path => C:\Windows ] 위치를 확인한다.
수정한 php.ini 파일을 c:\windows 에서 찾는데 없어서 생기는 오류...
apmsetup 통합된것으로 설치하면 어긋나는 경우가 있다. 그럴땐 저 경로로 php.ini 파일복사해서 일단 해결...
반응형
'Computer_IT > PHP' 카테고리의 다른 글
[javascript] 1초마다 시간 출력 (1) | 2006.09.29 |
---|---|
[JAVASCRIPT] 해상도 설정 보기 (0) | 2006.06.29 |
외부 CSS파일 불러오기 (0) | 2006.06.29 |
[javascript] 1초마다 시간 출력
Computer_IT/PHP2006. 9. 29. 01:17
반응형
AJAX의 기본을 쌓기 위해...
결과
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ko" lang="ko">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=euc-kr" />
- <title>Clock</title>
- <script language="JavaScript">
- function printTime() {
- // clock 객체 생성
- var clock = document.getElementById("clock");
- var now = new Date();
- clock.innerHTML =
- now.getFullYear() + "년 " +
- (now.getMonth()+1) + "월 " +
- now.getDate() + "일 " +
- now.getHours() + "시 " +
- now.getMinutes() + "분 " +
- now.getSeconds() + "초";
- // 1초 후에 함수 호출
- setTimeout("printTime()", 1000);
- };
- // 창이뜨면, html이 로딩되면 함수 호출
- window.onload = function() {
- printTime();
- };
- </script>
- </head>
- <body> 현재 시간은 <span id="clock"></span>
- </body>
- </html>
결과
현재 시간은 2006년 9월 29일 1시 15분 3초
현재 시간은 2006년 9월 29일 1시 15분 4초
....
....
현재 시간은 2006년 9월 29일 1시 15분 4초
....
....
반응형
'Computer_IT > PHP' 카테고리의 다른 글
Fatal error: Class 'SoapClient' not found (0) | 2010.11.08 |
---|---|
[JAVASCRIPT] 해상도 설정 보기 (0) | 2006.06.29 |
외부 CSS파일 불러오기 (0) | 2006.06.29 |
[JAVASCRIPT] 해상도 설정 보기
Computer_IT/PHP2006. 6. 29. 15:55
반응형
<html>
<body>
<script type="text/javascript">
document.write("해상도 : ")
document.write(screen.width + "*" + screen.height)
document.write("<br />")
document.write("보기 가능영역 : ")
document.write(screen.availWidth + "*" + screen.availHeight)
document.write("<br />")
document.write("색상 : ")
document.write(screen.colorDepth)
document.write("<br />")
document.write("버퍼 : ")
document.write(screen.bufferDepth)
document.write("<br />")
document.write("XDPI : ")
document.write(screen.deviceXDPI)
document.write("<br />")
document.write("YDPI : ")
document.write(screen.deviceYDPI)
document.write("<br />")
document.write("LogicalXDPI: ")
document.write(screen.logicalXDPI)
document.write("<br />")
document.write("LogicalYDPI: ")
document.write(screen.logicalYDPI)
document.write("<br />")
document.write("FontSmoothingEnabled: ")
document.write(screen.fontSmoothingEnabled)
document.write("<br />")
document.write("PixelDepth: ")
document.write(screen.pixelDepth)
document.write("<br />")
document.write("UpdateInterval: ")
document.write(screen.updateInterval)
document.write("<br />")
document.write("Window X position : ")
document.write(window.screenLeft)
document.write("<br />")
document.write("Window Y position : ")
document.write(window.screenTop)
document.write("<br />")
</script>
</body>
</html>
<body>
<script type="text/javascript">
document.write("해상도 : ")
document.write(screen.width + "*" + screen.height)
document.write("<br />")
document.write("보기 가능영역 : ")
document.write(screen.availWidth + "*" + screen.availHeight)
document.write("<br />")
document.write("색상 : ")
document.write(screen.colorDepth)
document.write("<br />")
document.write("버퍼 : ")
document.write(screen.bufferDepth)
document.write("<br />")
document.write("XDPI : ")
document.write(screen.deviceXDPI)
document.write("<br />")
document.write("YDPI : ")
document.write(screen.deviceYDPI)
document.write("<br />")
document.write("LogicalXDPI: ")
document.write(screen.logicalXDPI)
document.write("<br />")
document.write("LogicalYDPI: ")
document.write(screen.logicalYDPI)
document.write("<br />")
document.write("FontSmoothingEnabled: ")
document.write(screen.fontSmoothingEnabled)
document.write("<br />")
document.write("PixelDepth: ")
document.write(screen.pixelDepth)
document.write("<br />")
document.write("UpdateInterval: ")
document.write(screen.updateInterval)
document.write("<br />")
document.write("Window X position : ")
document.write(window.screenLeft)
document.write("<br />")
document.write("Window Y position : ")
document.write(window.screenTop)
document.write("<br />")
</script>
</body>
</html>
반응형
'Computer_IT > PHP' 카테고리의 다른 글
Fatal error: Class 'SoapClient' not found (0) | 2010.11.08 |
---|---|
[javascript] 1초마다 시간 출력 (1) | 2006.09.29 |
외부 CSS파일 불러오기 (0) | 2006.06.29 |
외부 CSS파일 불러오기
Computer_IT/PHP2006. 6. 29. 14:39
반응형
<head>
<link rel="stylesheet" type="text/css" href="파일이름.css" />
</head>
<link rel="stylesheet" type="text/css" href="파일이름.css" />
</head>
반응형
'Computer_IT > PHP' 카테고리의 다른 글
Fatal error: Class 'SoapClient' not found (0) | 2010.11.08 |
---|---|
[javascript] 1초마다 시간 출력 (1) | 2006.09.29 |
[JAVASCRIPT] 해상도 설정 보기 (0) | 2006.06.29 |