Web Wiz - Green Windows Web Hosting

  New Posts New Posts RSS Feed - WWF Search Engine Friendly Archive System v2.0
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

WWF Search Engine Friendly Archive System v2.0

 Post Reply Post Reply Page  12>
Author
doronty37 View Drop Down
Newbie
Newbie


Joined: 18 January 2006
Location: Turkey
Status: Offline
Points: 17
Post Options Post Options   Thanks (0) Thanks(0)   Quote doronty37 Quote  Post ReplyReply Direct Link To This Post Topic: WWF Search Engine Friendly Archive System v2.0
    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/
(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


Edited by doronty37 - 17 April 2007 at 4:22pm
Back to Top
gölge View Drop Down
Groupie
Groupie


Joined: 16 April 2005
Location: Turkey
Status: Offline
Points: 182
Post Options Post Options   Thanks (0) Thanks(0)   Quote gölge Quote  Post ReplyReply Direct Link To This Post 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 www.tallarmeniantale.com AND SEE THE TRUTH.
Back to Top
doronty37 View Drop Down
Newbie
Newbie


Joined: 18 January 2006
Location: Turkey
Status: Offline
Points: 17
Post Options Post Options   Thanks (0) Thanks(0)   Quote doronty37 Quote  Post ReplyReply Direct Link To This Post 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

Back to Top
Meiji Developer View Drop Down
Newbie
Newbie


Joined: 16 February 2007
Location: Bangladesh
Status: Offline
Points: 3
Post Options Post Options   Thanks (0) Thanks(0)   Quote Meiji Developer Quote  Post ReplyReply Direct Link To This Post 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
Back to Top
khaled66 View Drop Down
Newbie
Newbie


Joined: 30 January 2007
Status: Offline
Points: 9
Post Options Post Options   Thanks (0) Thanks(0)   Quote khaled66 Quote  Post ReplyReply Direct Link To This Post Posted: 17 February 2007 at 10:31am

how can I generate the  html pages

Back to Top
doronty37 View Drop Down
Newbie
Newbie


Joined: 18 January 2006
Location: Turkey
Status: Offline
Points: 17
Post Options Post Options   Thanks (0) Thanks(0)   Quote doronty37 Quote  Post ReplyReply Direct Link To This Post 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
Back to Top
PrivateEye View Drop Down
Groupie
Groupie
Avatar

Joined: 21 March 2003
Location: United Kingdom
Status: Offline
Points: 168
Post Options Post Options   Thanks (0) Thanks(0)   Quote PrivateEye Quote  Post ReplyReply Direct Link To This Post Posted: 25 February 2007 at 5:52pm
Is not it an overload on web server to always redirect on each request?
The Judgement Day
Back to Top
Gando View Drop Down
Groupie
Groupie


Joined: 30 June 2005
Location: Turkey
Status: Offline
Points: 52
Post Options Post Options   Thanks (0) Thanks(0)   Quote Gando Quote  Post ReplyReply Direct Link To This Post 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) &";"
%>

Back to Top
 Post Reply Post Reply Page  12>

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.