<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[TNF : Tatter Network Foundation forum - 메모 : 1.1]]></title>
	<link rel="self" href="http://forum.tattersite.com/ko/extern.php?action=feed&amp;tid=1706&amp;type=atom"/>
	<updated>2007-06-30T04:37:09Z</updated>
	<generator>PunBB</generator>
	<id>http://forum.tattersite.com/ko/viewtopic.php?id=1706</id>
		<entry>
			<title type="html"><![CDATA[RSS 답글: 메모 : 1.1]]></title>
			<link rel="alternate" href="http://forum.tattersite.com/ko/viewtopic.php?pid=18865#p18865"/>
			<content type="html"><![CDATA[<p>우수한님 숙원사업 드디어 처리 했습니다. 드디어 테스트할 환경을 만들었습니다. T_T</p><p>결과물은 <a href="http://dev.textcube.org/ticket/438">http://dev.textcube.org/ticket/438</a> 에서 확인하실 수 있습니다.</p>]]></content>
			<author>
				<name><![CDATA[inureyes]]></name>
				<uri>http://forum.tattersite.com/ko/profile.php?id=2</uri>
			</author>
			<updated>2007-06-30T04:37:09Z</updated>
			<id>http://forum.tattersite.com/ko/viewtopic.php?pid=18865#p18865</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[RSS 답글: 메모 : 1.1]]></title>
			<link rel="alternate" href="http://forum.tattersite.com/ko/viewtopic.php?pid=16500#p16500"/>
			<content type="html"><![CDATA[<p>** 위 내용에 추가 (LiteSpeed + LSPHP 환경) **</p><p>blog/owner/index.php 에서<br /></p><div class="codebox"><pre><code>$url = rtrim(isset($_SERVER[&#039;REDIRECT_URL&#039;]) ? $_SERVER[&#039;REDIRECT_URL&#039;] : $_SERVER[&#039;SCRIPT_NAME&#039;], &#039;/&#039;);</code></pre></div><p>라고 된 부분에서<br />REDIRECT_URL 을 REQUEST_URI로 바꿀 것.</p>]]></content>
			<author>
				<name><![CDATA[우수한]]></name>
				<uri>http://forum.tattersite.com/ko/profile.php?id=54</uri>
			</author>
			<updated>2007-02-12T18:28:13Z</updated>
			<id>http://forum.tattersite.com/ko/viewtopic.php?pid=16500#p16500</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[RSS 답글: 메모 : 1.1]]></title>
			<link rel="alternate" href="http://forum.tattersite.com/ko/viewtopic.php?pid=9795#p9795"/>
			<content type="html"><![CDATA[<p>현재 trunk는 1.1이 아닙니다 <img src="http://forum.tattersite.com/ko/img/smilies/neutral.png" width="15" height="15" alt="neutral" /><br />(1.0.7 입니다.)</p>]]></content>
			<author>
				<name><![CDATA[나니]]></name>
				<uri>http://forum.tattersite.com/ko/profile.php?id=134</uri>
			</author>
			<updated>2006-10-12T15:32:23Z</updated>
			<id>http://forum.tattersite.com/ko/viewtopic.php?pid=9795#p9795</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[메모 : 1.1]]></title>
			<link rel="alternate" href="http://forum.tattersite.com/ko/viewtopic.php?pid=9788#p9788"/>
			<content type="html"><![CDATA[<p>제가 태터툴즈 1.1 trunk 버전을 사용하기 위한 설정입니다.<br />까먹을까봐 메모해둡니다.</p><p><strong>[1] .htaccess와 관련하여 CGI 환경에서 정상적으로 작동되지 않는 문제</strong></p><p>lib/suri.php 에서<br /></p><div class="codebox"><pre><code>2: $url = isset($_SERVER[&#039;REDIRECT_URL&#039;]) ? $_SERVER[&#039;REDIRECT_URL&#039;] : $_SERVER[&#039;SCRIPT_NAME&#039;];</code></pre></div><p>을<br /></p><div class="codebox"><pre><code>2: $url = $_SERVER[&#039;REQUEST_URI&#039;];
3: if (($url_fix_pos=strpos($url, &#039;?&#039;, 1))!==false) $url = substr($url, 0, $url_fix_pos);</code></pre></div><p>으로 변경<br />참고: <a href="http://forum.tattertools.com/ko/viewtopic.php?id=1318">http://forum.tattertools.com/ko/viewtopic.php?id=1318</a></p><p><strong>[2] 카테고리, 태그를 클릭했을때 &#039;%EB%96%A0%EB%82%98%EB%B3%BC%EA%B9%8C&#039;에 해당되는 글 0건<br />이런 식으로 나타나는 문제</strong></p><p>blog/category/index.php 에서<br /></p><div class="codebox"><pre><code>4: $category = empty($suri[&#039;value&#039;]) ? 0 : getCategoryIdByLabel($owner, $suri[&#039;value&#039;]);</code></pre></div><p>을<br /></p><div class="codebox"><pre><code>4: $category = empty($suri[&#039;value&#039;]) ? 0 : getCategoryIdByLabel($owner, $suri[&#039;value&#039;]=urldecode($suri[&#039;value&#039;]));</code></pre></div><p>으로 변경</p><p>blog/tag/index.php 도 마찬가지로<br /></p><div class="codebox"><pre><code>5: $tag = getTagId($owner, $suri[&#039;value&#039;]);</code></pre></div><p>을<br /></p><div class="codebox"><pre><code>5: $tag = getTagId($owner, $suri[&#039;value&#039;]=urldecode($suri[&#039;value&#039;]));</code></pre></div><p>으로 변경</p>]]></content>
			<author>
				<name><![CDATA[우수한]]></name>
				<uri>http://forum.tattersite.com/ko/profile.php?id=54</uri>
			</author>
			<updated>2006-10-12T12:09:26Z</updated>
			<id>http://forum.tattersite.com/ko/viewtopic.php?pid=9788#p9788</id>
		</entry>
</feed>
