<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[TNF : Tatter Network Foundation forum - 윈도우 서버에서 setup.php 실행시 문제 수정]]></title>
	<link rel="self" href="http://forum.tattersite.com/ko/extern.php?action=feed&amp;tid=583&amp;type=atom"/>
	<updated>2006-05-30T13:51:48Z</updated>
	<generator>PunBB</generator>
	<id>http://forum.tattersite.com/ko/viewtopic.php?id=583</id>
		<entry>
			<title type="html"><![CDATA[윈도우 서버에서 setup.php 실행시 문제 수정]]></title>
			<link rel="alternate" href="http://forum.tattersite.com/ko/viewtopic.php?pid=3134#p3134"/>
			<content type="html"><![CDATA[<p>윈도우 서버에서 setup.php를 실행하고 &quot;태터툴즈를 다시 설정합니다&quot;를 선택해서 4단계로 넘어가면 &quot;테이블이 존재하지 않습니다&quot;라는 메세지가 뜨는 것을 수정하여 커밋하겠습니다.(대소문자 문제)</p><div class="codebox"><pre><code>switch (substr($table[0], strlen($_POST[&#039;dbPrefix&#039;]))) {
    case &#039;Attachments&#039;:
    case &#039;BlogSettings&#039;:
    ...
    case &#039;Trackbacks&#039;:
    case &#039;Users&#039;:
}

아래로 수정

switch (strtolower(substr($table[0], strlen($_POST[&#039;dbPrefix&#039;])))) {
    case &#039;attachments&#039;:
    case &#039;blogSettings&#039;:
    ...
    case &#039;trackbacks&#039;:
    case &#039;users&#039;:
}</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Peris]]></name>
				<uri>http://forum.tattersite.com/ko/profile.php?id=40</uri>
			</author>
			<updated>2006-05-30T13:51:48Z</updated>
			<id>http://forum.tattersite.com/ko/viewtopic.php?pid=3134#p3134</id>
		</entry>
</feed>
