Welcome Guest Search | Active Topics | Log In | Register

3 Pages <123
"There has been a serious error loading the forum"... Options · View
skymc
#31 Posted : Wednesday, January 23, 2008 4:18:48 AM

Rank: YAF Forumling


Joined: 1/23/2008
Posts: 3
hi,

i having this problem now.
It is a new fresh setup.
It's work on firefox mozilla but when i try to view in IE 7 it promt me this error!
I tried to clear cache and temp file but still same.
skymc
#32 Posted : Wednesday, January 23, 2008 4:19:24 AM

Rank: YAF Forumling


Joined: 1/23/2008
Posts: 3
on top of that, there is nothing in the admin->event log
louie k
#33 Posted : Wednesday, January 23, 2008 3:02:32 PM

Rank: YAF Forumling


Joined: 1/22/2008
Posts: 4
yeah nothing shows up in the event log when this error occurs for me either.
XeE
#34 Posted : Monday, April 07, 2008 1:28:39 PM
Rank: Advanced Member



Joined: 12/6/2007
Posts: 57
Location: pakistan
hi everyone,
Alot of people are asking about the error which i fixed and i also posted the solution for that. this error occurs when you make a new post which is not approved by moderator , and because of that Null is placed in field last posted , and it creates an error, i am pasting the solution again, its very easy.Only you have to replace one stored procedure with the one which i am going to paste below.

Solution:

Open sp yaf_topic_save then replace the sp with the following.
Note: The addition in this stored procedure is LastPosted, if LastPosted is Null,replace it with current date time. I hope it will help you people as well who want to have some moderated forums.

Code:

CREATE PROCEDURE [dbo].[yaf_topic_save](
                @ForumID  INT,
                @Subject  NVARCHAR(128),
                @UserID   INT,
                @Message  NTEXT,
                @Priority SMALLINT,
                @UserName NVARCHAR(50)  = NULL,
                @IP       NVARCHAR(15),
                @PollID   INT  = NULL,
                @Posted   DATETIME  = NULL,
                @LastPosted   DATETIME  = NULL,
       @Flags    INT)
AS
    BEGIN
        DECLARE  @TopicID INT
        DECLARE  @MessageID INT
        IF @Posted IS NULL
        SET @Posted = Getdate()
        IF @LastPosted IS NULL
        SET @LastPosted = Getdate()
        INSERT INTO yaf_Topic
                   (ForumID,
                    Topic,
                    UserID,
                    Posted,
                    Views,
                    LastPosted,
                    Priority,
                    PollID,
                    UserName,
                    NumPosts)
        VALUES     (@ForumID,
                    @Subject,
                    @UserID,
                    @Posted,
                     0,
                    @LastPosted,
                    @Priority,
                    @PollID,
                    @UserName,
                    0)
        SET @TopicID = Scope_identity()
        EXEC yaf_message_save
             @TopicID ,
             @UserID ,
             @Message ,
             @UserName ,
             @IP ,
             @Posted ,
              NULL ,
             @Flags ,
             @MessageID OUTPUT
        SELECT TopicID = @TopicID,
               MessageID = @MessageID
    END
GO

kirsten
#35 Posted : Monday, April 07, 2008 8:03:36 PM

Rank: YAF Forumling


Joined: 4/7/2008
Posts: 1
Location: sf
I have this problem too. I am a serious techno-neophyte and can't figure from this thread how to install. I also don't know what is being asked when the installation set-up asks for "SMTP Server:
The name of a smtp server used to send emails."

Please help and thank you.
PaulSwany
#36 Posted : Friday, April 11, 2008 5:08:49 PM

Rank: YAF Forumling



Joined: 4/10/2008
Posts: 3
Location: Bartlett, TN
I get this error only when one user tries to register... I even created an account for him and he gets the error now when he attempts to log in.... The event log is empty... I'm using 1.9.1.7 running on IIS 6 at GoDaddy.

I'm going to look at the login SP's.
Schecter420
#37 Posted : Wednesday, August 13, 2008 7:36:22 AM

Rank: YAF Forumling


Joined: 8/13/2008
Posts: 1
Location: CA
i never actually went through the whole installation, i quit after the first couple steps (because my knowledge is limited to HTML at this point and i didnt want to screw anything up), but when i went back later it said my forum was installed and ready to use. i clicked finish and came up with this same error message "
There has been a serious error loading the forum. No futher information is available.

Please contact the administrator if this message persists. "
i have almost no knowledge of any computer language besides HTML so please help me out, it would be much appreciated.
Jaben
#38 Posted : Wednesday, August 13, 2008 8:24:24 AM

Rank: YAF Head Dude



Joined: 10/10/2004
Posts: 2,950
Location: Honolulu, HI
Please don't revive old threads -- just reference them in a new topic.
"When you are grateful, fear disappears and abundance appears”."

Users browsing this topic
Guest (2)
3 Pages <123
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.

YAFPro Theme Created by Jaben Cargman (Tiny Gecko)
Powered by YAF 1.9.3 RC2 | YAF © 2003-2008, Yet Another Forum.NET
This page was generated in 0.175 seconds.

SourceForge.net Logo Powered by ASP.NET v2.0 411ASP.NET