Register   Login
     
  Latest Posts  
RE: Negative role tokens: ISNOTINROLE, ISAGENTNOTINROLE
by richardcook on 12/03/2008 11:01 PM
RE: Remove CAPTCHA when logged in?
by ba on 12/03/2008 10:22 PM
Admin and Host Users and Captcha
by ba on 12/03/2008 10:14 PM
RE: Notification on comment and multiple authors
by ba on 12/03/2008 8:54 PM
RE: How do I - templates
by cptkoi on 12/03/2008 8:19 PM
Notification on comment and multiple authors
by ba on 12/03/2008 8:14 PM
Private Messages 1.07 - Potential Display Name Bug
by blob150 on 12/03/2008 5:16 PM
Removal of "Actions" section...
by jlatulippe on 12/03/2008 5:08 PM
RE: MultiSelect Search on Multiple Checkbox
by smcculloch on 12/03/2008 3:46 PM
RE: Property Agent Latest Filter
by erikvb on 12/03/2008 3:45 PM
  Forums  
Subject: Friendly URL and DNN4.8.0 ?
Prev Next
You are not authorized to post a reply.

Author Messages
GlenWinUser is Offline
Gold Membership
Nuke Master
Nuke Master
Posts:713


1/16/2008 8:52 PM  

Hi,

Has anyone able to implement friendly URL in Dnn4.8 ??

Friendly URL was worlking in my site ok for DNN4.5.5 but after Upgrade to DNN4.8.0  - it not longer works !

Scott - do I need to download Friendly URL and repeat the install process again? If not then where do I look for to enable Friendly URL ?

BTW in case someone need to know - I am very happy with the DNN4.8.0 upgrade - it performs much better than DNN4.5.5

Cheers

Glen

GlenWinUser is Offline
Gold Membership
Nuke Master
Nuke Master
Posts:713


1/16/2008 9:58 PM  

Scott,

 I added this  urlFormat="HumanFriendly" to the webconfig but still not work ,

{
           
               
                                  name="DNNFriendlyUrl"
                  type="DotNetNuke.Services.Url.FriendlyUrl.DNNFriendlyUrlProvider, DotNetNuke.HttpModules"
                            includePageName="true"
                            regexMatch="[^a-zA-Z0-9 _-]" urlFormat="HumanFriendly" />   

  }

did I miss anything else ?

       

Mariette KnapUser is Offline
Gold Membership
Nuke Master
Nuke Master
Posts:650


1/16/2008 10:54 PM  

You need to turn that on in the host settings



Subscribe for great articles and howtos. Get unlimited access to all content.
Mariëtte Knap
www.smallbizserver.net
GlenWinUser is Offline
Gold Membership
Nuke Master
Nuke Master
Posts:713


1/17/2008 1:16 AM  

Hi Mariette

The Friendly Url was always enabled ! ... but I found out the problems was due to BOTH

  Browser Language Detection  and  Language Parameter in URLs For Current Portal were also enabled and that why Friendly URL did not work  :))    - btw these are some thing new in DNN 4.8.0

Thanks for the tip anyhow

 

sysdevUser is Offline
Registered Users
Nuke Newbie
Nuke Newbie
Posts:2

1/18/2008 8:34 PM  

I'm using DNN 4.8.0 and installed Friendly URL.  It's working just fine for me.

I had to alter the installation a bit - as noted below:

  1. there was no DLL called "/bin/DotNetNuke.HttpModules.UrlRewrite.dll".  I added the "Ventrian.FriendlyUrl.dll" to the /bin directory.
     
  2. Keys were modified in the web.config, and I commented out the old keys.  However, there was an extra key I had to modify, as follows:
     
    {!--{add name="DNNFriendlyUrl" type="DotNetNuke.Services.Url.FriendlyUrl.DNNFriendlyUrlProvider, DotNetNuke.HttpModules" includePageName="true" regexMatch="[^a-zA-Z0-9 _-]" /}--}
    {add name="DNNFriendlyUrl" type="Ventrian.FriendlyUrl.DNNFriendlyUrlProvider, Ventrian.FriendlyUrl" includePageName="true" regexMatch="[^a-zA-Z0-9 _-]" urlFormat="HumanFriendly" /}
     
    and ...
     
    {!--{add name="UrlRewrite" type="DotNetNuke.HttpModules.UrlRewriteModule, DotNetNuke.HttpModules" /}--}
    {add name="UrlRewrite" type="Ventrian.FriendlyUrl.UrlRewriteModule, Ventrian.FriendlyUrl"/}
     
    as well as ...
     
    {!--{add name="UrlRewrite" type="DotNetNuke.HttpModules.UrlRewriteModule, DotNetNuke.HttpModules" preCondition="managedHandler" /}--}
    {add name="UrlRewrite" type="Ventrian.FriendlyUrl.UrlRewriteModule, Ventrian.FriendlyUrl" preCondition="managedHandler" /}

Hope that helps.
D.SCOTT

sysdevUser is Offline
Registered Users
Nuke Newbie
Nuke Newbie
Posts:2

1/18/2008 8:41 PM  

Sorry about the formatting of the above web.config values - I attampted to copy them into the response but the FCK Editor stripped the angle brackets.

On a different note, these are excellent modules, skin objects, skins, and providers.  I use them all for my site.  Thank you for all the work you have put into this - well worth the price of a Silver Membership.

D.SCOTT

green flashUser is Offline
Silver Membership
Nuke Wiz
Nuke Wiz
Posts:132

1/19/2008 2:04 AM  
sysdev, why don't you use default provider with DNN 4.8, it is coming from Ventrian also :)

DNN Tutorials
DotNetNuke Turkish Community
AmitUser is Offline
Registered Users
Nuke Newbie
Nuke Newbie
Posts:1

2/19/2008 11:06 PM  

Build failed with error BC30560: 'RewriterRuleCollection' is ambiguous in the namespace 'DotNetNuke.HttpModules.Config'.

I'm upgrading from 4.05.0 to 4.08.0 on clonned website. Above error popsup when I try to build my website.
I have seen on few forums where people had problems from Host settings but I get an error while building the protal.

I'm stuck with FriendlyUrl.

Heres what I did:

-back up old web.config
-unzip install pkg on dnn root folder
-rename release.config to web.config
-port all the settings from old web.config to new web.config

delete old HttpModules.UrlRewrite.dll 

Replace this entry:
<add name="UrlRewrite" type="DotNetNuke.HttpModules.UrlRewriteModule, DotNetNuke.HttpModules.UrlRewrite"/>
with this entry:
<add name="UrlRewrite" type="iFinity.DNN.Modules.FriendlyUrl.UrlRewriteModule, iFinity.FriendlyUrlProvider"/>

Replace the existing ''DNNFriendlyUrl'' provider section with this one :
<
add name="DNNFriendlyUrl" type="iFinity.DNN.Modules.FriendlyUrl.DNNFriendlyUrlProvider, iFinity.FriendlyUrlProvider" includePageName="true" regexMatch="[^\+a-zA-Z0-9 _-]" urlFormat="HumanFriendly" redirectUnfriendly="true" doNotRewriteRegex="(\.axd)|(/DesktopModules/)" doNotRedirect="SearchResults;" doNotRedirectRegex="[.]*(/logoff.aspx)" pageExtensionUsage="always" parameterHandling="ordered" ignoreFileTypesRegex="(\.gif)|(\.png)|(\.css)|(\.js)|(\.jpg)|(\.html)|(\.htm)" checkForDupUrls="true" forceLowerCase="false" redirectWrongCase="false" replaceSpaceWith="_"/>

This did not solve the problem. Any thoughts are greatly appreciated.

-Amit

Marius MUser is Offline
Gold Membership
Nuke Wiz
Nuke Wiz
Posts:118

2/20/2008 2:52 AM  

I have same problemm

Déclic VidéoUser is Offline
Gold Membership
Nuke Master
Nuke Master
Posts:781


3/22/2008 4:42 AM  

I have the same problem than you.


Non linear video editing software, tips and tricks, tutorials... Déclic Vidéo FX
Déclic VidéoUser is Offline
Gold Membership
Nuke Master
Nuke Master
Posts:781


3/28/2008 2:19 AM  

ignore this post


Non linear video editing software, tips and tricks, tutorials... Déclic Vidéo FX
Déclic VidéoUser is Offline
Gold Membership
Nuke Master
Nuke Master
Posts:781


3/28/2008 2:20 AM  

ignore this post


Non linear video editing software, tips and tricks, tutorials... Déclic Vidéo FX
You are not authorized to post a reply.
Forums > Projects > Friendly Urls > Friendly URL and DNN4.8.0 ?



ActiveForums 3.7