Print Page | Close Window

WWF Search Engine Friendly Archive System v2.0

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=22667
Printed Date: 29 March 2026 at 6:50pm
Software Version: Web Wiz Forums 12.08 - https://www.webwizforums.com


Topic: WWF Search Engine Friendly Archive System v2.0
Posted By: doronty37
Subject: WWF Search Engine Friendly Archive System v2.0
Date Posted: 12 February 2007 at 11:56am
This extension shows all categories, topics and threads with Search Engine Friendly (SEO) UI.

The system constructed on customing 404 error document. So you must be able to customise error documents to run this extension.

Versiyon History:
  + mySQL and msSQL database support.
    (Tested on MySQL 4.1 and Microsoft SQL Server 2005 Express)

  + Forum names, topic titles and category names added to urls
    (/forum-archive/forum-topic/forum-name.html)

  + Auto-generate these urls.

  + Easier localization with a language file.

  + Hide password protected forums.

  + Cleaner posts with removing all html tags.

Test:
http://www.mydesign.gen.tr/forum-arsiv/ - http://www.mydesign.gen.tr/forum-arsiv/
(Test address is in Turkish bu script is in English)

Download:
http://script.mydesign.gen.tr/wwf_eklenti/mydesign_wwf_forum_archive_v2_0_eng.zip - http://script.mydesign.gen.tr/wwf_eklenti/mydesign_wwf_forum_archive_v2_0_eng.zip


-------------
http://www.mydesign.gen.tr - mydesign.gen.tr : code snippets, articles, sample applications, developer tools of programming languages



Replies:
Posted By: gölge
Date Posted: 12 February 2007 at 5:12pm
great mod thanks.
what is the advantages of using 404 error system?
is there any special reason for this?


-------------
"A lie travels round the world while Truth is putting on her boots" C.H. Sturgeon
PLEASE VISIT http://www.tallarmeniantale.com - www.tallarmeniantale.com AND SEE THE TRUTH.


Posted By: doronty37
Date Posted: 13 February 2007 at 6:34am
When a visitor tries to visit forum-archive/forum-name.html page, server canot find this page and redirect the visitor to 404 error page.

So, we can run an asp script when a visitor tries to visit an invalid page by writing our own code to 404 page.

You can find an article in Turksh here: http://www.asprehberi.net/icerik/2116.html



-------------
http://www.mydesign.gen.tr - mydesign.gen.tr : code snippets, articles, sample applications, developer tools of programming languages


Posted By: Meiji Developer
Date Posted: 17 February 2007 at 2:22am
This is a great add on to the forum. Can be considered to include in the main application


Posted By: khaled66
Date Posted: 17 February 2007 at 10:31am

how can I generate the  html pages



Posted By: doronty37
Date Posted: 22 February 2007 at 6:40am
you don't need to do this. this system generates virtual pages.

just download script, upload to root directory of youe site and redirect 404 error page to /404.asp


-------------
http://www.mydesign.gen.tr - mydesign.gen.tr : code snippets, articles, sample applications, developer tools of programming languages


Posted By: PrivateEye
Date Posted: 25 February 2007 at 5:52pm
Is not it an overload on web server to always redirect on each request?

-------------
The Judgement Day


Posted By: Gando
Date Posted: 01 March 2007 at 2:34am
I'm using physical path, not virtual path. Because I have to put my database files in db folder and it is in outside of wwwroot directory. I mean like "C:\domain\db\file.mdb" and my wwwroot like "C:\domain\wwwroot\file.asp"

How can I configure for physical path? You can see setup code from below.

Ayarlar.asp

Quote <%
'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
'
' Web Wiz Forum Arşiv Sistemi
' Copyright by Murat Yavuz
' http://www.mydesign.gen.tr
'
'
' Web Wiz Forum Resmi Sitesi:
' http://www.webwizforums.com
'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


'// ---------------- Düzenlenebilir kısım başlangıcı ----------------

' Arşivin bulunacağı link
' Buraya ismi geçerli bir URL olan her değeri girebilirsiniz.
' (Not: Bu ismin klasör ismiyle herhangi bir bağlantısı yoktur,
' arsiv klasörünün ismini kesinlikle değiştirmeyin.)
Const strArsivYolu = "forum-arsiv"

' Forumunuzun adı
' Site başlığında ve navigasyonda görünecek
Const strSiteForumAdi = "MyDesign Forum"

' Forumunuzun adresi
' Buraya tam adres yazabileceğiniz gibi
' sadece klasör ismi de yazabilirsiniz.
' Ancak klasör ismi sonuna / yazmayınız
' Örneğin:
' http://www.siteadi.com/forum
' /forum
' ../forum
Const strForumLoc = "/myforum"

' Veritabanı yolu
' Burayı sitenizi ana klasörüne göre düzenlemeniz gerekir
' Forumun veritabanı yolunu değiştirmediyseniz kullanım şu şekilde olacaktır
' forum/database/wwForum.mdb

Const strDatabasePath = "forum/database/wwForum.mdb"

' Kullandığınız forumun versiyonu
Const strForumVersion = "8.04"

' Bir sayfada gösterilecek konu sayısı
Const intSayfaKayitSayisi = 25

'// ---------------- Düzenlenebilir kısım bitişi ------------------

Dim adoCon
Dim kd
Dim rs

Set adoCon = Server.CreateObject("ADODB.Connection")
Set kd = Server.CreateObject("Adodb.Recordset")
Set rs = Server.CreateObject("Adodb.Recordset")

adoCon.Open "Provider=Microsoft.Jet.OLEDB.4.0; Data Source="& Server.MapPath(strDatabasePath) &";"
%>



Posted By: Gando
Date Posted: 01 March 2007 at 3:21am
Ok, I fixed this problem.
Quote Const strDatabasePath = "D:\Domain\db\file.mdb"
Quote adoCon.Open "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ="& (strDatabasePath) &";"

So now I have some problem. When I click to forum links than i got this  error message.
Quote ADODB.Recordset error '800a0cc1'

Item cannot be found in the collection corresponding to the requested name or ordinal.

/arsiv/_forum-topics.asp, line 55

http://www.domain.com/forum-arsiv/forum-topics/f-20.html



Posted By: Gando
Date Posted: 01 March 2007 at 4:32am
I download version 2.0 and its fixed. Thank you for sharing.

http://rapidshare.com/files/18808433/mydesign_wwf_forum_archive_v2_0_tr.zip.html - http://rapidshare.com/files/18808433/mydesign_wwf_forum_archive_v2_0_tr.zip.html


Posted By: MortiOli
Date Posted: 05 April 2007 at 10:29pm
Does anyone have any English documentation for this please?


Posted By: doronty37
Date Posted: 17 April 2007 at 4:23pm
Originally posted by MortiOli MortiOli wrote:

Does anyone have any English documentation for this please?

Sorry,
I put wrong link to my messsage.
You can find an English document for installation in the zip file
http://script.mydesign.gen.tr/wwf_eklenti/mydesign_wwf_forum_archive_v2_0_eng.zip - http://script.mydesign.gen.tr/wwf_eklenti/mydesign_wwf_forum_archive_v2_0_eng.zip


-------------
http://www.mydesign.gen.tr - mydesign.gen.tr : code snippets, articles, sample applications, developer tools of programming languages



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