Web Wiz - Green Windows Web Hosting

  New Posts New Posts RSS Feed - Active topic error
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

Active topic error

 Post Reply Post Reply
Author
Titan View Drop Down
Newbie
Newbie
Avatar

Joined: 05 November 2003
Location: Australia
Status: Offline
Points: 1
Post Options Post Options   Thanks (0) Thanks(0)   Quote Titan Quote  Post ReplyReply Direct Link To This Post Topic: Active topic error
    Posted: 05 November 2003 at 10:20pm

 

HEy guys, when I try to check active topics i get the following error. I recently upgraded from 7.01 to 7.51a SQL vesrion.  

 

Microsoft OLE DB Provider for SQL Server error '80040e14'

Could not find stored procedure 'wwfSpActiveTopics'.

/forum/active_topics.asp, line 293

 

  Topics Topic Starter Replies Views Last Post


Edited by Titan
Back to Top
dudboy View Drop Down
Newbie
Newbie


Joined: 01 August 2003
Location: United Kingdom
Status: Offline
Points: 22
Post Options Post Options   Thanks (0) Thanks(0)   Quote dudboy Quote  Post ReplyReply Direct Link To This Post Posted: 06 November 2003 at 1:28am

You need to go into Query analyzer for SQL and run this script against your database

 

CREATE PROCEDURE [dbo].[wwfSpActiveTopics] (
@AuthorID int,
@GroupID int,
@GroupPerm int,
@dblActiveFrom datetime

)
AS
SELECT tblForum.Forum_name, tblForum.Password, tblForum.Forum_code, tblTopic.*
FROM tblCategory, tblForum, tblTopic
WHERE ((tblCategory.Cat_ID = tblForum.Cat_ID AND tblForum.Forum_ID = tblTopic.Forum_ID) AND (tblTopic.Last_entry_date > GetDate() - @dblActiveFrom))
 AND (tblForum.[Read] <= @GroupPerm OR (tblTopic.Forum_ID IN (
    SELECT tblPermissions.Forum_ID
    FROM tblPermissions
    WHERE tblPermissions.Author_ID = @AuthorID OR tblPermissions.Group_ID = @GroupID AND tblPermissions.[Read]=1))
    )
ORDER BY tblCategory.Cat_order ASC, tblForum.Forum_Order ASC, tblTopic.Last_entry_date DESC;
GO

 

See here http://forums.webwiz.net/forum_posts.asp?TID=6950&a mp;a mp;PN=1

I have found that active topics still does not work correctly though even in the latest verion



Edited by dudboy
Back to Top
 Post Reply Post Reply

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.08
Copyright ©2001-2026 Web Wiz Ltd.


Become a Fan on Facebook Follow us on X Connect with us on LinkedIn Web Wiz Blogs
About Web Wiz | Contact Web Wiz | Terms & Conditions | Cookies | Privacy Notice

Web Wiz is the trading name of Web Wiz Ltd. Company registration No. 05977755. Registered in England and Wales.
Registered office: Web Wiz Ltd, Unit 18, The Glenmore Centre, Fancy Road, Poole, Dorset, BH12 4FB, UK.

Prices exclude VAT at 20% unless otherwise stated. VAT No. GB988999105 - $, € prices shown as a guideline only.

Copyright ©2001-2026 Web Wiz Ltd. All rights reserved.