歡迎光臨, 訪客. 請先 登入註冊一個帳號.
十一月 23, 2024, 07:41:58 上午
19595 文章 在 3865 主題 由 4579 會員
最新註冊會員: aa123aa1
  列出文章
頁: [1]
1  支援 / 使用與操作 / 文章首字 於: 二月 25, 2005, 07:47:22 上午
看到Mark大網頁上的文章第一個字都比較大,然後有一個正方形的框框,請問這是plog 1.0 特有的功能嗎?
2  支援 / 使用與操作 / 迴響問題 於: 二月 24, 2005, 01:02:55 上午
沒錯,是email設定的問題!!
謝謝~
3  支援 / 使用與操作 / 迴響問題 於: 二月 23, 2005, 04:10:46 下午
發表迴響時出現:

程式碼:
Exception message: mail(): SMTP server response: 550 5.7.1 Unable to relay for xxx@abc.com
Error code: 2
-- Backtrace --
C:\Discuz\plog\class\mail\phpmailer\class.phpmailer.php(441): mail
C:\Discuz\plog\class\mail\phpmailer\class.phpmailer.php(372): phpmailer.mailsend
C:\Discuz\plog\class\mail\emailservice.class.php(126): phpmailer.send
C:\Discuz\plog\class\dao\articlenotifications.class.php(87): emailservice.sendmessage
C:\Discuz\plog\class\dao\articlenotifications.class.php(116): articlenotifications.notifyuser
C:\Discuz\plog\class\action\addcommentaction.class.php(202): articlenotifications.notifyusers
C:\Discuz\plog\class\controller\controller.class.php(102): addcommentaction.perform
C:\Discuz\plog\index.php(40): blogcontroller.process


plog0.32
是什麼原因呢?
4  支援 / 安裝與設定 / 一台主機可以同時有兩個plog 系統存在嗎? 於: 二月 21, 2005, 10:11:51 上午
沒錯,拿掉就沒事了,謝謝 lss
但這是什麼原因呢?
每個人都有這個問題嗎?還是這只是個案呢?
5  支援 / 安裝與設定 / 一台主機可以同時有兩個plog 系統存在嗎? 於: 二月 21, 2005, 03:12:15 上午
這是我的 index.template

程式碼:
{include file="summary/header.template" selected="index"}

<div id="maincolumn">
    <br style="clear:both;" />
    <div id="intro">
        <h2>Welcome to pLog!</h2>
        <h4 class="question">What is this site?</h4>
        <p>You could use this area to give some information about this site.</p>
       
        <ul>
            <li>See the following links for more information: <br />
                <a href="summary.php?op=Faq">FAQ</a></li>
            <li><a href="register.php">Register a new blog here</a></li>
        </ul>
    </div>
    {include file="summary/recent.template"}
</div>

<div id="column-left">
    <h2>Most active blogs</h2>
    <ul>
    {foreach from=$activeBlogs item=blog}
        <li class="{cycle values="odd,even"}"><a href="{$url->blogLink($blog)}">{$blog->getBlog()|strip_tags"}</a></li>
    {/foreach}
    </ul>

    <h2>Newest blogs</h2>
    <ul>
    {foreach from=$recentBlogs item=blog}
        <li class="{cycle values="odd,even"}"><a href="{$url->blogLink($blog)}">{$blog->getBlog()|strip_tags"}</a></li>
    {/foreach}
    </ul>

    <h2>Most commented articles</h2>
    <ul>
    {foreach from=$commentedPosts item=post}
        <li class="{cycle values="odd,even"}">
            <a href="{$url->postPermalink($post)}">{$post->getTopic()|strip_tags"}</a> ({$post->getTotalComments()})<br />
        </li>
    {/foreach}
    </ul>

    <h2>Most read articles</h2>
    <ul>
    {foreach from=$readestBlogs item=post}
        <li class="{cycle values="odd,even"}">
            <a href="{$url->postPermalink($post)}">{$post->getTopic()|strip_tags"}</a> ({$post->getNumReads()})<br />
        </li>
    {/foreach}
    </ul>  
</div>

<div id="column-right">
    <h2>Log-in</h2>
    <form id="loginForm" method="post" action="admin.php">
    <fieldset>
        <div class="field">
            <label for="userName">{$locale->tr("username")}</label><br />
            <input type="text" tabindex="1" name="userName" id="userName" value="" size="12" maxlength="50" />
        </div>
        <div class="field">
            <label for="userPassword">{$locale->tr("password")}</label><br />
            <input type="password" tabindex="2" name="userPassword" id="userPassword" size="12" maxlength="50" />
        </div>
        <br />
        <input type="submit" name="Login" value="{$locale->tr("login")}" />
        <input type="hidden" name="op" value="Login" />
    </fieldset>
    </form>
       
    <h2>Other Stuff</h2>
    <h4 class="upper"></h4>
    <ul>
        <li><a href="http://www.plogworld.org" rel="external">add</a></li>
        <li><a href="http://www.plogworld.org" rel="external">for example</a></li>
        <li><a href="http://www.plogworld.org" rel="external">some</a></li>
        <li><a href="http://www.plogworld.org" rel="external">links</a></li>                        
        <li><a href="http://www.plogworld.org" rel="external">here</a></li>
    </ul>
    <h4 class="upper">How about a logo here?</h4>
    <a href="http://www.bitacoles.net" rel="external" class="noborder"><img src="imgs/plog-powered.png"  alt="pLog Powered" class="nodecoration" /></a>
    <br />
</div>

{include file="summary/footer.template"}


奇怪的是IE refresh後就沒有再出現這些錯誤碼
但summary.php的畫面卻有些字無法顯示
請看:
http://lin.homeip.net/scu/plog/summary.php
6  支援 / 安裝與設定 / 一台主機可以同時有兩個plog 系統存在嗎? 於: 二月 19, 2005, 07:10:01 上午
當我清掉 /tmp 裡面的 cache 在 refresh summary後, 出現

Exception message: Smarty error: [in summary/index.template line 23]: syntax error: unrecognized tag: $blog->getBlog()|strip_tags" (Smarty_Compiler.class.php, line 403)
Error code: 256
-- Backtrace --
C:\Discuz\plog\class\template\smarty\Smarty.class.php(1102): trigger_error
C:\Discuz\plog\class\template\smarty\Smarty.class.php(1857): smarty_compiler.trigger_error
....
...
..
.

不知代表什麼?
7  支援 / 安裝與設定 / 一台主機可以同時有兩個plog 系統存在嗎? 於: 二月 17, 2005, 12:07:02 下午
刪除 www.abc.com/plog 下所有東西及 table
按照上述的方法改過後
www.abc.com/plog 的舊文章仍會出現在www.abc.com/xyz/plog/summary.php 上
而且點進去還可看到舊文章
這是什麼道理呢?


我是使用0.32版本
8  支援 / 安裝與設定 / 一台主機可以同時有兩個plog 系統存在嗎? 於: 二月 17, 2005, 01:51:48 上午
www.abc.com/plog
www.abc.com/xyz/plog

不同的路徑,不同的database table,有時兩個會錯亂ㄝ
特別是summary.php
就算刪掉其中一個(包括刪除database table)其資料還會殘留再summary.php上面,是cookie的關係嗎?
頁: [1]