<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[安道生練功房 - Latest posts for "fly"]]></title>
		<link>https://forum.andowson.com/posts/listByUser/42</link>
		<description><![CDATA[Latest posts for "fly"]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>[JForum中文社群 JForum Chinese Users Community] 回覆:關於JForum忘記密碼流程的說明及小修改</title>
				<description><![CDATA[ <blockquote>
 <div>
  <cite>andowson wrote:</cite>已修改為fly。也希望再見到您發表新文章。
 </div>
</blockquote>
<br>
<br>
谢谢 <img src="https://forum.andowson.com/images/smilies/e8a506dc4ad763aca51bec4ca7dc8560.gif" alt="smilie">]]></description>
				<guid isPermaLink="true">https://forum.andowson.com/posts/preList/291/548</guid>
				<link>https://forum.andowson.com/posts/preList/291/548</link>
				<pubDate><![CDATA[Thu, 1 Jan 2009 09:04:01]]> GMT</pubDate>
				<author><![CDATA[ fly]]></author>
			</item>
			<item>
				<title>[JForum中文社群 JForum Chinese Users Community] 回覆:關於JForum忘記密碼流程的說明及小修改</title>
				<description><![CDATA[ <blockquote>
 <div>
  <cite>andowson wrote:</cite>首先，JForum的手動啟用帳號中輸入的是會員ID（整數），不是會員名稱（字串），您的會員ID可以由會員列表前面第一行數字查得（即#那一行）。 
  <br>
  第二，驗證碼在當初加入會員時，已發送通知信到您註冊時所使用的電子郵件信箱，如果當初您註冊用的信箱是正確的，您可以到您的信箱中再找找看有沒有那封信。 
  <br>
  第三，如果當初註冊時沒收到啟用帳號通知信，目前這個版本的JForum也沒有提供補發驗證碼的功能，如果您比較偏好使用fly這個帳號，有幾種作法： 
  <br>
  a.由系統管理者手動啟用帳號，這樣子您會有兩個帳號 
  <br>
  b.由系統管理者變更您目前通過認證的這個帳號名稱為fly，將原來的fly改為別的名稱 
  <br>
  c.開發補發驗證碼的程式，可以模仿忘記密碼的程式來改，然後您再去申請補發驗證碼，然後再來啟用帳號。目前想到的邏輯如下： 
  <br>
  1.在手動啟用帳號的頁面上加入補發驗證碼連結，使用者按下後顯示申請表單畫面 
  <br>
  2.使用者同時輸入帳號跟新的電子郵件信箱地址 
  <br>
  3.系統檢查該帳號是否已啟用 
  <br>
  3.1.如果尚未啟用，則更新該帳號的電子郵件信箱，同時產生新驗證碼，寄送至這個新的電子郵件信箱 
  <br>
  3.2如果已啟用，則顯示帳號已啟用畫面（避免帳號被盜用） 
  <br>
  4.使用者至其新的電子郵件信箱收信，收到信後再啟用帳號 
  <br>
  <br>
  這幾個作法的優缺點如下： 
  <br>
  a方案：優點：簡單，目前系統所提供的功能。缺點：無法確認使用者所填寫之電子郵件信箱是否正確，失去驗證碼機制所要的目的。然後同一個人變成有兩個帳號。 
  <br>
  b方案：優點：可以保留目前您這個帳號所發表的文章紀錄。缺點：就是要請系統管理者去處理這件事，還有原先的文章可能會看起來怪怪的。 
  <br>
  c方案：優點：可以讓使用者自行處理這件事情。不需要系統管理者介入。也可以回收一些帳號。缺點：就是還要開發程式，需要考量所花的時間成本以及日後與新版本程式相容性的問題。還有就是同一個人還是有兩個帳號。 
  <br>
  <br>
  目前，我比較傾向使用b方案。不知道您是否同意這樣的處理方式？
 </div>
</blockquote>
<br>
<br>
不好意思，最近由于身体原因没来上网。 
<br>
我非常赞成使用b方案，这个dream1000的账号我不想要了，你给我改成fly吧，非常感谢你的热情]]></description>
				<guid isPermaLink="true">https://forum.andowson.com/posts/preList/291/546</guid>
				<link>https://forum.andowson.com/posts/preList/291/546</link>
				<pubDate><![CDATA[Tue, 30 Dec 2008 17:57:41]]> GMT</pubDate>
				<author><![CDATA[ fly]]></author>
			</item>
			<item>
				<title>[JForum中文社群 JForum Chinese Users Community] 回覆:關於JForum忘記密碼流程的說明及小修改</title>
				<description><![CDATA[ <blockquote>
 <div>
  <cite>andowson wrote:</cite>您的問題應該是因為帳號尚未啟用，所以無法通過登入驗證程序，主要是因為在net.jforum.sso.DefaultLoginAuthenticator這個類別的validateLogin方法裡面對於登入成功的條件是 
  <br>
  <pre class="line-numbers"><code class="language-java match-braces">if (user != null &amp;&amp; !user.isDeleted() &amp;&amp; (user.getActivationKey() == null || user.isActive())) {<br>			return user;<br>		}</code></pre>
  <br>
  所以雖然透過忘記密碼功能可以成功修改密碼，但是如果您一直沒有去啟用帳號，則仍然無法登入成功。 
  <br>
 </div>
</blockquote>
<br>
<br>
谢谢提醒，我启用账号的时候需要验证码，“现在”我怎样得到验证码呢？]]></description>
				<guid isPermaLink="true">https://forum.andowson.com/posts/preList/291/542</guid>
				<link>https://forum.andowson.com/posts/preList/291/542</link>
				<pubDate><![CDATA[Sun, 21 Dec 2008 09:29:37]]> GMT</pubDate>
				<author><![CDATA[ fly]]></author>
			</item>
			<item>
				<title>[新生訓練營 Test] 回覆:看看论坛是否支持gif</title>
				<description><![CDATA[ <blockquote>
 <div>
  <cite>andowson wrote:</cite>fly這個帳號目前尚未啟用，不知道是您未收到確認信還是信箱輸入錯誤，如果是後者，那就無解了。
 </div>
</blockquote>
<br>
<br>
http://www.andowson.com/posts/list/291.page#p536]]></description>
				<guid isPermaLink="true">https://forum.andowson.com/posts/preList/289/537</guid>
				<link>https://forum.andowson.com/posts/preList/289/537</link>
				<pubDate><![CDATA[Sun, 14 Dec 2008 12:52:02]]> GMT</pubDate>
				<author><![CDATA[ fly]]></author>
			</item>
			<item>
				<title>[JForum中文社群 JForum Chinese Users Community] 回覆:關於JForum忘記密碼流程的說明及小修改</title>
				<description><![CDATA[ <img src="https://forum.andowson.com/images/smilies/9d71f0541cff0a302a0309c5079e8dee.gif" alt="smilie">]]></description>
				<guid isPermaLink="true">https://forum.andowson.com/posts/preList/291/536</guid>
				<link>https://forum.andowson.com/posts/preList/291/536</link>
				<pubDate><![CDATA[Sun, 14 Dec 2008 12:49:13]]> GMT</pubDate>
				<author><![CDATA[ fly]]></author>
			</item>
			<item>
				<title>[JForum中文社群 JForum Chinese Users Community] 回覆:關於JForum忘記密碼流程的說明及小修改</title>
				<description><![CDATA[ 谢谢你写得这么详细。 
<br>
<br>
我每次进行完第7步后可以看到图片1， 
<br>
然后进行第9步，得到图片2 
<br>
<br>
我试验过很多次，我的操作应该没有问题]]></description>
				<guid isPermaLink="true">https://forum.andowson.com/posts/preList/291/535</guid>
				<link>https://forum.andowson.com/posts/preList/291/535</link>
				<pubDate><![CDATA[Sun, 14 Dec 2008 12:47:16]]> GMT</pubDate>
				<author><![CDATA[ fly]]></author>
			</item>
			<item>
				<title>[JForum中文社群 JForum Chinese Users Community] jforum论坛的表情支持gif，为什么附件不支持gif动画呢</title>
				<description><![CDATA[ 呵呵，谢谢，lynx286所發表的那篇文章的问题也我提出来的，本来我在你这个论坛也想用fly发帖的，但是这个论坛的找回密码功能有问题，我只好换一个用户发帖了]]></description>
				<guid isPermaLink="true">https://forum.andowson.com/posts/preList/290/530</guid>
				<link>https://forum.andowson.com/posts/preList/290/530</link>
				<pubDate><![CDATA[Sat, 13 Dec 2008 12:53:44]]> GMT</pubDate>
				<author><![CDATA[ fly]]></author>
			</item>
			<item>
				<title>[新生訓練營 Test] 看看论坛是否支持gif</title>
				<description><![CDATA[ 呵呵，谢谢，我也是参考lynx286的方式，www.mydwbi.com的那些关于gif的提问也是我发的。顺便说一下，你这个论坛的找回用户密码的功能应该是有问题，我本来也想用fly这个用户的，可是老是修改不了密码，不信你试试]]></description>
				<guid isPermaLink="true">https://forum.andowson.com/posts/preList/289/529</guid>
				<link>https://forum.andowson.com/posts/preList/289/529</link>
				<pubDate><![CDATA[Sat, 13 Dec 2008 12:46:26]]> GMT</pubDate>
				<author><![CDATA[ fly]]></author>
			</item>
			<item>
				<title>[新生訓練營 Test] 看看论坛是否支持gif</title>
				<description><![CDATA[ andowson 请问这个你是怎么实现的啊？谢谢]]></description>
				<guid isPermaLink="true">https://forum.andowson.com/posts/preList/289/526</guid>
				<link>https://forum.andowson.com/posts/preList/289/526</link>
				<pubDate><![CDATA[Sat, 13 Dec 2008 08:42:56]]> GMT</pubDate>
				<author><![CDATA[ fly]]></author>
			</item>
			<item>
				<title>[JForum中文社群 JForum Chinese Users Community] jforum论坛的表情支持gif，为什么附件不支持gif动画呢</title>
				<description><![CDATA[ <img src="https://forum.andowson.com/images/smilies/9d71f0541cff0a302a0309c5079e8dee.gif" alt="smilie">
<br>
http://www.andowson.com/posts/list/0/289.page]]></description>
				<guid isPermaLink="true">https://forum.andowson.com/posts/preList/290/521</guid>
				<link>https://forum.andowson.com/posts/preList/290/521</link>
				<pubDate><![CDATA[Sun, 7 Dec 2008 18:26:12]]> GMT</pubDate>
				<author><![CDATA[ fly]]></author>
			</item>
			<item>
				<title>[新生訓練營 Test] 看看论坛是否支持gif</title>
				<description><![CDATA[ <img src="https://forum.andowson.com/images/smilies/3b63d1616c5dfcf29f8a7a031aaa7cad.gif" alt="smilie">]]></description>
				<guid isPermaLink="true">https://forum.andowson.com/posts/preList/289/520</guid>
				<link>https://forum.andowson.com/posts/preList/289/520</link>
				<pubDate><![CDATA[Sun, 7 Dec 2008 18:25:05]]> GMT</pubDate>
				<author><![CDATA[ fly]]></author>
			</item>
	</channel>
</rss>