Print Page | Close Window

MOD: Latest Forum Posts for your website

Printed From: Web Wiz Forums
Category: Web Wiz Web App Support Forums
Forum Name: Web Wiz Forums Modifications
Forum Description: Mod's and Add-on's for Web Wiz Forums.
URL: https://forums.webwiz.net/forum_posts.asp?TID=19472
Printed Date: 29 March 2026 at 7:00pm
Software Version: Web Wiz Forums 12.08 - https://www.webwizforums.com


Topic: MOD: Latest Forum Posts for your website
Posted By: MadDog
Subject: MOD: Latest Forum Posts for your website
Date Posted: 21 April 2006 at 7:07am
This file is intended to help people put a "Latest Forum Posts" box on their website, or a simple file to start from somewhere.

This mod will not add Latest Forum Posts to the forum pages, unless you add the code to do it.

http://b2.iportalx.net/forum_posts.asp?TID=88&PID=797 - Download/View Mod Here


-------------
http://www.iportalx.net" rel="nofollow">



Replies:
Posted By: ppkppk
Date Posted: 21 April 2006 at 11:16pm
I have copied your code exactly, changed the path to the database and the forum, however I get
 
"invalid character"
 
for the line
 
strCon = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & Server.MapPath("xxx/forum.mdb")
 
The path above was changed for security


Posted By: ppkppk
Date Posted: 23 April 2006 at 9:52pm

Has anyone used the code above with success?



Posted By: ppkppk
Date Posted: 27 April 2006 at 9:25pm
To clarify this mod is designed to be added to any page in a web site and draw the latest posts from the forum. It is not for inclusion into the forum itself.
 
I have now managed to get past the invalid character bit - there was a space that got carried over when I copied it from this forum. However I now get...
 
"Characters found after end of SQL statement"
 
for the line...
 
rsCommon.Open strSQL, adoCon
 
My code looks like this (database details removed for security)....
 
<%
'#########################################################################
'##
'## Display Newest Forum Posts with WebWizForums v8.x
'##
'## Just configure the database settings and it will read the latest forum
'## posts. This file should be setup for your website.
'##
'## Mod from
http://www.iportalx.net - www.iportalx.net
'##
'## Writen by Drew Gauderman (aka MadDog)
'## Email:
mailto:drew@aspinvision.com - drew@aspinvision.com
'## Website: http://www.iportalx.net - www.iportalx.net
'##
'## Dont want to do this yourself? Get iPortalX! A Portal with WebWizForum!
'##
http://www.iportalx.net - http://www.iportalx.net
'##
'#########################################################################

Dim rsCommon
Dim adoCon
Dim strCon
Dim strSQL
Dim strLastestPostsModTopicSubject
Dim strLastestPostsModForumPath
Dim intLastestPostsTotal
Dim strDatabaseType
Dim strDBTrue
Dim strDBFalse
'The path to the forum
strForumPath = "../forum/"
'How many new topics to show
intLastestPostsTotal = 25
'//-----------------------------------------------------
'// Database connection and settings
'//-----------------------------------------------------
'Database settings for Access
strDatabaseType = "Access"
strDBTrue = "True"
strDBFalse = "False"
'Database settings for MSSQL
'strDatabaseType = "SQLServer"
'strDBTrue = "1"
'strDBFalse = "0"
'Database settings for MySQL
'strDatabaseType = "MySQL"
'strDBFalse = 0
'strDBTrue = -1
'Access connection
strCon = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & Server.MapPath("../forum")

'MSSQL Connection
'Const strSQLServerName = ".\SQLExpress" 'Holds the name of the SQL Server (This is the name/location or IP address of the 'SQL Server)
'Const strSQLDBUserName = "sa" 'Holds the user name (for SQL Server Authentication)
'Const strSQLDBPassword = "blank" 'Holds the password (for SQL Server Authentication)
'Const strSQLDBName = "beta2"
'strCon = "Provider=SQLOLEDB;Server=" & strSQLServerName & ";User ID=" & strSQLDBUserName & ";Password=" & strSQLDBPassword & ";Database=" & strSQLDBName & ";"
'//-----------------------------------------------------
'Start the database connection
Set adoCon = Server.CreateObject("ADODB.Connection")
adoCon.Open strCon
'Start a recordset connection
Set rsCommon = Server.CreateObject("ADODB.Recordset")
strSQL = "SELECT "
If strDatabaseType = "SQLServer" OR strDatabaseType = "Access" Then strSQL = strSQL & " TOP " & intLastestPostsTotal & " "
strSQL = strSQL & "tblForum.Forum_name, tblTopic.Topic_ID, tblTopic.Subject, tblThread.Thread_ID, tblThread.Message_date, tblAuthor.Author_ID, tblAuthor.Username, tblThread.Message  " & _
"FROM tblForum, tblTopic, tblAuthor, tblThread, tblPermissions" & _
"WHERE tblForum.Forum_ID = tblTopic.Forum_ID " & _
"AND tblTopic.Topic_ID = tblThread.Topic_ID " & _
"AND tblAuthor.Author_ID = tblThread.Author_ID " & _
"AND tblForum.Forum_ID = tblPermissions.Forum_ID " & _
"AND (tblPermissions.Group_ID = 2 AND tblPermissions.View_Forum = " & strDBTrue & ") "
strSQL = strSQL & "AND (tblForum.Password = '' OR tblForum.Password Is Null) AND (tblTopic.Hide = " & strDBFalse & " AND tblThread.Hide = " & strDBFalse & ") ORDER BY tblThread.Message_date DESC "
'mySQL limit operator
If strDatabaseType = "mySQL" Then strSQL = strSQL & " LIMIT " & intLastestPostsTotal
strSQL = strSQL & ";"
rsCommon.Open strSQL, adoCon
If NOT rsCommon.EOF Then saryForumPosts = rsCommon.getRows()
'Close all connections, very important!!
rsCommon.Close
Set rsCommon = Nothing
adoCon.Close
Set adoCon = Nothing
 
'No forum posts
If IsArray(saryForumPosts) = False Then
Response.Write "<span class=""text_arial"">No Forum Posts Made</span>"
'Forum posts have been made
Else
'Loop through the array of forum posts
For intLoopCounter = 0 TO UBound(saryForumPosts, 2)
'saryForumPosts array lookup table
'0 = tblForum.Forum_name
'1 = tblTopic.Topic_ID
'2 = tblTopic.Subject
'3 = tblThread.Thread_ID
'4 = tblThread.Message_date
'5 = tblAuthor.Author_ID
'6 = tblAuthor.Username
'7 = tblThread.Message
strLastestPostsModTopicSubject = saryForumPosts(2, intLoopCounter)
'Crop the subject down to 18 characters
If Len(strLastestPostsModTopicSubject) > 18 then strLastestPostsModTopicSubject = Left(strLastestPostsModTopicSubject,30) & "..."
Response.Write("<a href=""" & strForumPath & "forum_posts.asp?TID=" & saryForumPosts(1, intLoopCounter) & """>" & strLastestPostsModTopicSubject & "</a><br />")
Next
End If
%>
 
Any help with this would be greatly appreciated as the users of my forum are missing this feature.


Posted By: potorrillo
Date Posted: 02 May 2006 at 10:52pm
Thanks. It's ok now.


Posted By: ppkppk
Date Posted: 02 May 2006 at 11:50pm
In fact I would be most appreciative of a mod for showing the last 10-20 posts anywhere in my web site not just within the forum itself.


Posted By: fx5500
Date Posted: 03 May 2006 at 4:22pm
This mod isnt working on my server..:(


Posted By: wizmike
Date Posted: 03 July 2006 at 1:57pm
Originally posted by ppkppk ppkppk wrote:

In fact I would be most appreciative of a mod for showing the last 10-20 posts anywhere in my web site not just within the forum itself.
 
So would I....
 
I also get an sql error.
 
 
 
.


Posted By: wizmike
Date Posted: 04 July 2006 at 2:21am
I now have maddog's original code working with Access. Check the sql statements very (very) carefully
 
I included the file on the home page of a web site. All OK.
 
But... It returns the last ten posts alright but here is the but...
If the last ten posts are all within the same topic, you get ten identical links
 
Mmmm. More work needed methinks on this.
I will keep plugging away.
 
Anyone else working on this?
 
edit:
I tried:
strSQL = "SELECT DISTINCT Top " & intLastestPostsTotal & " "
strSQL = strSQL & "tblThread.Topic_ID, tblForum.Forum_name etc.
 
The idea being that DISTINCT would work on tblThread.Topic_ID
But it didnt, I still got multiple Topic_IDs
 
DISTINCT may be the way though?
 
But DISTINCT needs to work its stuff only on "Topic_ID"
 
.
 


Posted By: aliceaod
Date Posted: 12 July 2006 at 1:48am
I get this error when I access the main forum. Not sure what I did wrong...
 
 

Active Server Pages error 'ASP 0126'

Include file not found

/forum/common.asp, line 1

The include file 'includes/global_variables_inc.asp' was not found.



Posted By: wizmike
Date Posted: 29 July 2006 at 4:54am

Based on the idea by "MadDog" at:
http://b2.iportalx.net/forum_posts.asp?TID=88&PID=797 - http://b2.iportalx.net/forum_posts.asp?TID=88&PID=797
- - - - - - - - - - - - - - -

To display the last xx posts on any page within the website outside the forum.
I tried other mods but some could not be placed on ANY page within the site and/or would show last 10 posts OK but if the last 10 were within the same topic then I got 10 lines all pointing to the same topic!
NOTE: code is for MS Access. See page above for other databases.

"last_ten_posts.asp" placed in the forum directory

<%
' to be used as an include on another page, like
' <!--#include virtual = "/forum/last_ten_posts.asp" -->
%>
<p style="text-align : left; font-size : 80%;color:#800000;">
 Latest 10 Forum Posts
<br />
<%
Dim strLastestPostsModForumPath
Dim intLastestPostsTotal
Dim intCharacters
Dim strLastestPostsModCon
Dim adoCon
Dim rsAll
Dim strSQL
Dim intLoopCounter
Dim strTID
Dim strSubject
Dim strPID

'The absolute path to the forum
strLastestPostsModForumPath = "/forum/"

'How many new topics to show
intLastestPostsTotal = 10

'How many characters to show from the Topic title?
intCharacters = 18

'Database connection
'Default connection - adjust to suit
strLastestPostsModCon = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath("/forum/database/wwForum.mdb")

Set adoCon = Server.CreateObject("ADODB.Connection")

adoCon.Open strLastestPostsModCon

Set rsAll = Server.CreateObject("ADODB.Recordset")

strSQL = "SELECT TOP " & intLastestPostsTotal & " "
strSQL = strSQL & " Topic_ID, Subject, Last_thread_ID "
strSQL = strSQL & " FROM tblTopic "
strSQL = strSQL & "ORDER BY Last_Thread_ID DESC;"

'open the connection
rsAll.Open strSQL, adoCon

'if there are records put into an array then close the connection
If NOT rsAll.EOF Then strArrayAll = rsAll.getRows()
rsAll.Close
Set rsAll = Nothing
adoCon.Close
Set adoCon = Nothing

'Loop through the array of forum posts
For intLoopCounter = 0 TO UBound(strArrayAll, 2)
  'strArrayAll array lookup table
  '0 = Topic_ID
  '1 = Subject
  '2 = Last_thread_ID
  strTID = strArrayAll(0, intLoopCounter)
  strSubject = strArrayAll(1, intLoopCounter)
  strPID = strArrayAll(2, intLoopCounter)

 'if someone uses a single quote in the title like: Where's
 'the quote is stored as &#039; which is normally Ok unless the line gets truncated.
 'I had a line truncated at 18 characters which left the & showing at the end of the line :-)
 'so lets replace it with a single quote. May need to do the same for other "odd" characters. What about a double quote? etc.
  strSubject = replace(strSubject, "&#039;", "'")
 
  'Crop the subject down to "intCharacters"
  If Len(strSubject) > intCharacters then strSubject = Left(strSubject,intCharacters) & "..."

  Response.Write "<a href=""" & strLastestPostsModForumPath & "forum_posts.asp?TID=" & strTID & "&" & "PID=" & strPID & "#" & strPID & """>" & strSubject & "</a><br />" & vbcrlf

  Next
%>
</p>



Posted By: Exis
Date Posted: 29 July 2006 at 3:21pm
You did it!

Well done! Working great.

Be sure to add this to the MOD index so others can find it easily.

Thanks


Posted By: ppkppk
Date Posted: 30 July 2006 at 5:43am
Yep worked for me also, thanks WizMike


Posted By: zeli
Date Posted: 10 August 2006 at 1:34am
I really like this idea, since I usually update our homepage with discussion topics manually. As I don't have time to do this, it gets outdated very fast:

http://www.circleoftrust.org/

I'm not sure I followed the instructions correctly.

I created a blank "last_ten_posts.asp" in my forum directory

then I copied the code in wizmike's post because I only want to display 4 topics and his code seems like it will let me customize that.

and then I saved and I have a "last_ten_posts.asp" in my forum directory.

Now my question is, how do I put that into my homepage?



Posted By: wizmike
Date Posted: 10 August 2006 at 3:43am
Originally posted by zeli zeli wrote:


Now my question is, how do I put that into my homepage?

 
Umm?
If you look at the first few lines of code you have:
 
<%
' to be used as an include on another page, like
' <!--#include virtual = "/forum/last_ten_posts.asp" -->
%>
So... where you want the last xx posts to appear you use:
 
<!--#include virtual = "/forum/last_ten_posts.asp" -->
 
Assuming of course that your home page is an .asp page
 
.


Posted By: zeli
Date Posted: 10 August 2006 at 3:46am
ah! that didnt work so i dont think it is. :P

thank you though! I'll check with a friend and see how i convert it so i can use this.



Posted By: wizmike
Date Posted: 10 August 2006 at 4:08am
zeli
 
Point your browser at "last_ten_posts.asp" and make sure it is actually working.
 


Posted By: zeli
Date Posted: 13 August 2006 at 3:05pm
It's working now! thanks!



Posted By: suedechaser
Date Posted: 28 August 2006 at 4:05am
Hi All,

Can anyone please post here the code for MSSQL.

The link previously posted in this thread ( http://b2.iportalx.net/forum_posts.asp?TID=88&PID=797 ) appears to be a dead link.

thanks in advance

suede


Posted By: wizmike
Date Posted: 28 August 2006 at 4:59am
Originally posted by suedechaser suedechaser wrote:


Can anyone please post here the code for MSSQL.
 
http://forums.webwiz.net/forum_posts.asp?TID=19472&PID=105745#105745 - http://forums.webwiz.net/forum_posts.asp?TID=19472&PID=105745#105745  
 
Try this.
 
 
.


Posted By: MadDog
Date Posted: 28 August 2006 at 6:20am
Sorry about that was in the process of changing servers, http://b2.iportalx.net - http://b2.iportalx.net is back up.

MOD is located at http://b2.iportalx.net/forum_posts.asp?TID=88&PID=797 - http://b2.iportalx.net/forum_posts.asp?TID=88&PID=797

-------------
http://www.iportalx.net" rel="nofollow">


Posted By: suedechaser
Date Posted: 28 August 2006 at 7:35am
Hi,

Thanks MadDog. ( and Mike, but your link pointed back to this same thread )

regards

suede



Posted By: rahimi
Date Posted: 03 September 2006 at 4:18pm
hi
can i use this code to show latest forum post in wwf 8.3 ,
i use this cod in versione 7.9
tnx
 
<%
'#################################################
'#              #
'#      MELODIK      #
''#              #
''#      http://www.melodik.net - www.melodik.net      #
'#              #
'#################################################
Dim strLatestForumPostSubject
Dim strFirstPostMsg
 Dim rsLatestPosts
 Dim strTopicSubject
 Dim NumberOfPosts
 Dim rowType
 Dim LastLatestPostsDateTime
 Dim LastLatestPostsDate
 Dim LastLatestPostsTime
 Dim rsLatestPosts2
 Dim sql2
%>

<%
 NumberOfPosts = 0

 Set rsLatestPosts = Server.CreateObject("ADODB.Recordset")
 strSQL = "SELECT tblTopic.Topic_ID, tblTopic.Subject, tblTopic.Last_entry_date, tblForum.Forum_ID, tblForum.Forum_name, tblForum.[Read] FROM (tblForum INNER JOIN tblTopic ON tblForum.Forum_ID = tblTopic.Forum_ID) WHERE ((tblForum.Password) Is Null) ORDER BY tblTopic.Last_entry_date DESC;"

 rsLatestPosts.Open strSQL, adoCon

  Response.Write "<table cellpadding=""0"" cellspacing=""0"" width=""100%"">"

 If rsLatestPosts.EOF Then
  Response.Write "<tr><td class=""smText"">No Forum Posts Made</td></tr>"  'English
  'Response.Write "<tr><td class=""smText"">Forumda yeni mesaj yok</td></tr>" ' Turkish
 Else

  Do while NOT rsLatestPosts.EOF And NumberOfPosts < 20
   intForumID = CInt(rsLatestPosts("Forum_ID"))
   intForumReadRights = CInt(rsLatestPosts("Read"))
   Call forumPermisisons(intForumID, intGroupID, intForumReadRights, 0, 0, 0, 0, 0, 0, 0, 0, 0)

If rowType = strTableOddRowColour Then
rowType = strTableEvenRowColour
Else
rowType = strTableOddRowColour
end if

   'If the user has no read rights then skip the post
   If blnRead = True Then

    If len(rsLatestPosts("Subject"))>40 then
     strTopicSubject = left(rsLatestPosts("Subject"),40) & "..."
    Else
     strTopicSubject = rsLatestPosts("Subject")
  strFirstPostMsg = removeHTML(strFirstPostMsg)
  strFirstPostMsg  = Mid(Trim(strFirstPostMsg), 1, 250)

    End If
    NumberOfPosts = NumberOfPosts + 1

 LastLatestPostsDateTime = rsLatestPosts("Last_entry_date")
 LastLatestPostsDate = DateFormat(LastLatestPostsDateTime, saryDateTimeData)
 LastLatestPostsTime = TimeFormat(LastLatestPostsDateTime, saryDateTimeData)

 Set rsLatestPosts2 = Server.CreateObject("ADODB.Recordset")
 sql2 = "SELECT tblThread.Thread_ID, tblThread.Topic_ID, tblAuthor.Username, tblAuthor.Author_ID FROM (tblAuthor INNER JOIN tblThread ON tblAuthor.Author_ID = tblThread.Author_ID) WHERE Topic_ID= "&rsLatestPosts("Topic_ID")&" order by Message_date desc"
 rsLatestPosts2.Open sql2, adoCon

 Response.Write("<tr bgcolor="""&rowType&"""><td class=""Text""><a href=""forum_posts.asp?TID=" & rsLatestPosts("Topic_ID") & "&get=last#"&rsLatestPosts2("Thread_ID")&""" target=""_blank"" class=""smLink"" title=""" & strFirstPostMsg & """ - ("&rsLatestPosts("Forum_name")&")"">" & strTopicSubject & "</a></td><td class=""smText"" >"&rsLatestPosts2("Username") &"</td><td class=""Text"" align=""right"" >" & LastLatestPostsDate & "-" & LastLatestPostsTime & "</td>")

   End If
  
  rsLatestPosts.MoveNext
  If blnRead = True Then
   If NOT rsLatestPosts.EOF Then Response.Write("</tr>")
  End If
  Loop

  If NumberOfPosts = 0 Then
   Response.Write "<tr><td class=""smText"">No Sufficient Permission to View Latest Forum Posts</td></tr>" 'English
   'Response.Write "<tr><td class=""smText"">Son mesajlar‎ gِrme yetkiniz yok</td></tr>" ' Turkish
  End If
 End If

  Response.Write "</table>"

 rsLatestPosts2.Close
 Set rsLatestPosts2 = Nothing
 rsLatestPosts.Close
 Set rsLatestPosts = Nothing
%>



-------------
Mohammad Rahimi ,
Astronomer and Web Developer.


Posted By: pomme
Date Posted: 04 September 2006 at 2:05pm
I've added this to my website homepage and it works very well. My forum is running 7.93. I seem to have a problem now with my forum; after posts are made to the forum (or pm), the next screen is a screen saying this page cannot be viewed. The URL has this page request forum/post_message.asp?PN=0
 
I don't know why I'm getting this error, but when you return to the forum topic, you can see that the new post has been added.
 
Has anyone had this type of error, and maybe you can let me know how to fix it?
 
Thanks


Posted By: bims
Date Posted: 20 October 2006 at 1:17am
Can i display last posts in a specific forum? For eg if i have a soccer forum and a tennis forum, can i just display the last posts in the soccer forum?

Do i make sense?


Posted By: MadDog
Date Posted: 20 October 2006 at 1:43am
Originally posted by MadDog MadDog wrote:

This file is intended to help people put a "Latest Forum Posts" box on their website, or a simple file to start from somewhere.

This mod will not add Latest Forum Posts to the forum pages, unless you add the code to do it.

http://b2.iportalx.net/forum_posts.asp?TID=88&PID=797 - Download/View Mod Here



-------------
http://www.iportalx.net" rel="nofollow">


Posted By: balearicjobs
Date Posted: 31 October 2006 at 8:35pm
If anybody has sucessfully used this script with a MySQL database, I would appreciate you posting the version of the script you are using.

I've been told that I need to "Just replace the strCon variable with the MySQL connection string then edit strDatabaseType to MySQL.", unfortunetly as I am not confident with ASP I am unsure how to do this.

Thank you for any help.


-------------
Thanks for your help!!!
Kind Regards
Rob,
http://www.balearic-jobs.com" rel="nofollow - Balearic Jobs
Helping young people find seasonal work in the Balearic Islands, including vacancie


Posted By: balearicjobs
Date Posted: 09 November 2006 at 8:23am
Originally posted by balearicjobs balearicjobs wrote:

If anybody has sucessfully used this script with a MySQL database, I would appreciate you posting the version of the script you are using.

I've been told that I need to "Just replace the strCon variable with the MySQL connection string then edit strDatabaseType to MySQL.", unfortunetly as I am not confident with ASP I am unsure how to do this.

Thank you for any help.
 
I'm still non the wiser on this one. If any body can help I would appreciate it! Smile


-------------
Thanks for your help!!!
Kind Regards
Rob,
http://www.balearic-jobs.com" rel="nofollow - Balearic Jobs
Helping young people find seasonal work in the Balearic Islands, including vacancie


Posted By: cfilut
Date Posted: 05 December 2006 at 3:38am
I get this message when creating and checking this page (original code on first page of this post)

Latest 10 Forum Posts

Microsoft VBScript runtime error '800a000d'

Type mismatch: 'UBound'

/forum/last_ten_posts.asp, line 56

any suggestions?



-------------
You are what you eat, So stay away from the jerk chicken.


Posted By: coolguy
Date Posted: 05 December 2006 at 5:10am
Originally posted by bims bims wrote:

Can i display last posts in a specific forum? For eg if i have a soccer forum and a tennis forum, can i just display the last posts in the soccer forum?

Do i make sense?
 
 
Yes, replace this:
 
WHERE tblForum.Forum_ID = tblTopic.Forum_ID
 
with this:
 
WHERE tblForum.Forum_ID = 31 
 
 
31 would be your forum number
 
 


Posted By: tonygu
Date Posted: 13 December 2006 at 2:37pm
 I get thsi message when creating and checking,

Microsoft OLE DB Provider for ODBC Drivers error '80004005'

[Microsoft][ODBC Microsoft Access Driver]General error Unable to open registry key 'Temporary (volatile) Jet DSN for process 0x1b64 Thread 0x1bbc DBC 0x2db8c094 Jet'.

 
The code on the second page of this post
 
Amy suggestions?


Posted By: Pfeff
Date Posted: 13 January 2007 at 6:28pm
Anyone ever get a MySQL version of this running?

This is exactly what I am looking for and I can finish off building my site with this. Any help would be greatly appreciated.


Posted By: EvoIX_mr2006
Date Posted: 21 January 2007 at 8:19am
Alright...Tried this mod on my main page, and the only thing it ever says is "No Forum Posts Made"...Any suggestions?


Posted By: Andersen
Date Posted: 22 January 2007 at 12:08pm
As long as the author of the mod donīt seem to provide any help, I suggest you give it up and try look for something else. (Heīs still active in here).
 
This is a very bad idea of a mod not beeing supported or removed from the system. My suggestion to the moderators. Kill the thread! No reason to have a thread or a link to a none working mod.
 


-------------
Greets
Andersen


Posted By: MadDog
Date Posted: 23 January 2007 at 2:17am
Ill post a new version tomorrow since NO one can figure it out even though its a very simple straight forward mod.

-------------
http://www.iportalx.net" rel="nofollow">


Posted By: Andersen
Date Posted: 23 January 2007 at 10:40am
A great idea.
I tried the mod myself sometime ago. I donīt recall exactly what was the problem, but I had problems as well. I gave it up.
Iīm prepared to give it a new go if/when there is a new release.
 
 


-------------
Greets
Andersen


Posted By: MrMellie
Date Posted: 23 January 2007 at 5:06pm
Try http://forums.webwiz.net/forum_posts.asp?TID=22375



Print Page | Close Window

Forum Software by Web Wiz Forums® version 12.08 - https://www.webwizforums.com
Copyright ©2001-2026 Web Wiz Ltd. - https://www.webwiz.net