|
|
 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.
|
|
|
 Rank: YAF Forumling
Joined: 1/23/2008 Posts: 3
|
on top of that, there is nothing in the admin->event log
|
|
|
 Rank: YAF Forumling
Joined: 1/22/2008 Posts: 4
|
yeah nothing shows up in the event log when this error occurs for me either.
|
|
|
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
|
|
|
 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.
|
|
|
 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.
|
|
|
 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.
|
|
|
 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)
|
YAFPro Theme Created by Jaben Cargman (Tiny Gecko)Powered by YAF 1.9.3 RC2 |
YAF © 2003-2008, Yet Another Forum.NETThis page was generated in 0.175 seconds.