• This forum has been archived. New threads and replies may not be made. All add-ons/resources that are active should be migrated to the Resource Manager. See this thread for more information.

Tenshi - Latest Thread - Sidebar

Hi, I'm getting Server Error on forum home.

Code:
Server Error

Undefined offset: 252

    XenForo_Application::handlePhpError() in LatestThread/Model/TLatestThread.php at line 32
    LatestThread_Model_TLatestThread::LatestThreadArray() in LatestThread/Controller/Public.php at line 10
    LatestThread_Controller_Public->actionIndex() in XenTrCom/WhoHasVisited/Controller/Public.php at line 4
    XenTrCom_WhoHasVisited_Controller_Public->actionIndex() in XenTrCom/MostLikedUsers/Controller/Public.php at line 6
    XenTrCom_MostLikedUsers_Controller_Public->actionIndex() in XenTrCom/MostTrophyList/Controller/Public.php at line 6
    XenTrCom_MostTrophyList_Controller_Public->actionIndex() in XenTrCom/TodayBirthday/Controller/Public.php at line 6
    XenTrCom_TodayBirthday_Controller_Public->actionIndex() in XenForo/FrontController.php at line 310
    XenForo_FrontController->dispatch() in XenForo/FrontController.php at line 132
    XenForo_FrontController->run() in /x/x/x/public_html/index.php at line 17

I just disabled Tenshi - Latest Thread add-on and error gone.
 
Tenshi hasn't posted in this thread for 5 months so I would say the add-on has been abandoned by the author.
 
There's some indication that it doesn't work so well with certain other add-ons; a compatibility issue most likely.
Quite a few people have experienced errors which required them to disable it.
 
I have read the other problems.

In my board are this AddOn and the "Albums" without any problems.
All other features are self coded.
 
Hi, I'm getting Server Error on forum home.

Code:
Server Error

Undefined offset: 252

    XenForo_Application::handlePhpError() in LatestThread/Model/TLatestThread.php at line 32
    LatestThread_Model_TLatestThread::LatestThreadArray() in LatestThread/Controller/Public.php at line 10
    LatestThread_Controller_Public->actionIndex() in XenTrCom/WhoHasVisited/Controller/Public.php at line 4
    XenTrCom_WhoHasVisited_Controller_Public->actionIndex() in XenTrCom/MostLikedUsers/Controller/Public.php at line 6
    XenTrCom_MostLikedUsers_Controller_Public->actionIndex() in XenTrCom/MostTrophyList/Controller/Public.php at line 6
    XenTrCom_MostTrophyList_Controller_Public->actionIndex() in XenTrCom/TodayBirthday/Controller/Public.php at line 6
    XenTrCom_TodayBirthday_Controller_Public->actionIndex() in XenForo/FrontController.php at line 310
    XenForo_FrontController->dispatch() in XenForo/FrontController.php at line 132
    XenForo_FrontController->run() in /x/x/x/public_html/index.php at line 17

I just disabled Tenshi - Latest Thread add-on and error gone.

do you have any rss feeds enabled?
 
Not sure if it's been mentioned to but the Latest Threads title format ain't matching the rest of the site for me i had to change the tenshi_latest_thread template from

Code:
<xen:if is="{$LatestThread}">
<div class="section staffOnline avatarList">
    <div class="secondaryContent">
    <h3>{xen:phrase tenshi_latest_thread}</h3>
<ul>
<xen:foreach loop="$LatestThread" value="$Lthread">
<li>
<xen:avatar user="$Lthread.user" size="s" img="true" />
<div class="footnote"><a href="{$Lthread.href}" title="{$Lthread.title}">{$Lthread.title}</a></div>
<div class="posterDate muted">
<a href="{xen:link members, $Lthread.user}" class="faint">{$Lthread.user.username}</a> <xen:datetime time="$Lthread.time" class="muted" />
</div>
</li>
</xen:foreach>
</ul>
    </div>
</div>
</xen:if>

to this commented out avatars for now

Code:
<xen:if is="{$LatestThread}">
<div class="section staffOnline avatarList">
<div class="secondary2">
<h3>{xen:phrase tenshi_latest_thread}</h3>
</div>
<div class="secondaryContent">
<ul>
<xen:foreach loop="$LatestThread" value="$Lthread">
<li>
<xen:comment><xen:avatar user="$Lthread.user" size="s" img="true" /></xen:comment>
<div class="footnote"><a href="{$Lthread.href}" title="{$Lthread.title}">{$Lthread.title}</a></div>
<div class="posterDate muted">
<a href="{xen:link members, $Lthread.user}" class="faint">{$Lthread.user.username}</a> <xen:datetime time="$Lthread.time" class="muted" />
</div>
</li>
</xen:foreach>
</ul>
</div>
</div>
</xen:if>

So far addon working for me
 
Two things:

Title should be listed as Latest Threads, not Latest Thread. I fixed my copy, but....

Second: Is there any way to move this to a higher position in the sidebar, perhaps above the Staff Online Now block?
 
Top Bottom