Recently Viewed...
To help you navigate to pages you most recently visited, select from the links below.
Product Forums
Sharepoint Forums
Newsletter
Dynamic Forms Demonstrations
Page Tags
DNN Modules
SnowCovered Top Sellers

'Relationship Building' and 'Communication' are two essential nuts and bolts for a business to prosper. This module allows you to bridge both of these and easily generate continuous awareness of your web site, products and services. Your prospects and customers will greatly appreciate this featur

Live Content uses Web 2.0 approach to provide a Rich User Interface and streamlines content presentation by overlaying content on current page. Overlay images, videos, audio, text/html content, flash, dotnetnuke modules, and external content. Experience the demo...

Version 5 of the perennial best-selling tool for creating data-based solutions in DNN without custom programming. This version focuses on greater flexibility, expandability, and ease-of-use.

Powerful, Ajax Enabled, Easy to Use. Document Management has never been better. Open-DocumentLibrary allows DotNetNuke users to share and manage documents in a flexible, intelligent way, offering granular control over Folder and Document access.

Ultra Video Gallery is a brother product of Ultra Media Gallery, UVG allows you to add videos in various format and automatically convert them to flv format, you also can add videos from embed code and play them in our integrated flash video player.

Gloss is the first ALL COLORS! skin, featuring a powerful XML-based flash and being 100% W3C CSS XHMTL1.0 compliant. Tune it yourself on the fly, changing colors, backgrounds, containers, text color and size, width and more! Brilliant!Available for DNN4 and DNN5

The award winning discussion forum and community solution for DotNetNuke is now even better. When you need to build the best community site, you need the best module, Active Forums!

ALL NEW ! - Minimalist includes skin packs in 12 great colors. Each color has Flat, Gradient and Glass versions. Feature rich XML Flash header, perfect for just about any purpose. 9 Different menu options in each skin pack; 3 horizontal menus, 3 vertical menus and 3 all-new Twin level menus . . .

Edit documents directly on your server. The premier document management solution for DotNetNuke (DNN). Index contents of documents. Share documents across your portal and avoid duplicates. Revised and flexible UI. Extensible architecture.

Ultra Media Gallery is the most popular photo gallery and media gallery solution for DotNetNuke, UMG offers 10 different flash player to browse your gallery with completely different user interface experience.

    |   Register   |   Wednesday, January 07, 2009   
Data Springs Product Forums...
Subject: New Mode Setting in DNN 4.5
Prev Next
You are not authorized to post a reply.

Author Messages
plord
Posts:0


06/11/2007 12:40 PM  

Hi Chad,

I recently upgraded DNN 4.5.1 to 4.5.3 and then upgraded Dyn Reg from 2.3 to 2.4.  When users click the Register link the Dyn Reg module is not visible in the Registration page.  The registration module is visible when a user clicks a link in a text module on the home page.  I think this may be caused by the new usability setting in the Host Settings page.  When the mode is set to edit the registration page is not visible.  My client insists on the edit mode so that they don't need to click it each time they open a page to edit.  When I am logged in as admin and click view mode and then click Register the module is displayed on the page.

Please Advise

Chad
Posts:2385
river guide
river guide

06/14/2007 9:51 AM  
Peter,

HI. We are checking into this. We are knee deep in development for the 3.0 release but if a patch is needed we should have one out by next week for this. We do have many clients running on 4.5.3 with Dynamic Registration 2.4 so I assuming it is just related to that usability setting. FYI, this usability setting is on the admin site settings tab I believe and not the host. Still determining what needs to be done within the module for it to be displayed with that setting turned on though.

Also, shouldn't this only be happening as an admin signed in? There are no issues unless you are an admin/host user and navigating to that page right?

-Chad
Greg
Posts:1
new to the springs
new to the springs

06/14/2007 10:45 AM  
Looks like it's a DNN issue. This solution worked for me:

http://www.dotnetnuke.com/Community/Forums/tabid/795/forumid/108/threadid/140539/threadpage/1/scope/posts/Default.aspx
Chad
Posts:2385
river guide
river guide

06/14/2007 10:47 AM  
Peter,

Hi. I wanted to follow up on this. I have been testing both an upgrade and a full installation of 4.5.3 and I can for sure duplicate an issue here. Only problem is I think (at least at this time) that its a bug related to DotNetNuke and not an issue we can fix (again, still in research phase but this is what I have found so far).

The issue appears to happen regardless of the usability setting. What is happening is that when you sign out and hit register link its taking you to the link with the correct TabID BUT... its adding something to the querystring such as &ctl=returnURL=http://otheraddress

The example above is assuming it wasn't using FriendlyURL's. If you are using friendly's is also is doing something similar such as ctl/returnurl/ etc... if you remove this its working fine.


Here is why I think its a bug on the core site, one we can't control this at all as far as what is passed. I think they meant to have it say &ctl=&returnurl= etc... Maybe missing an & operator? To be honest I am not sure why its passing the CTL operator anyway, this is the first time it has and I don't see the purpose.

Either way I am making a post on the benefactors forum right now to determine what is causing the issue. There there is something that comes out of it which includes a fix ill let you know.

-Chad
Chad
Posts:2385
river guide
river guide

06/14/2007 10:56 AM  

Hi guys. Just letting you know that I did post to the DotNetNuke Benefactors Forum here:

http://www.dotnetnuke.com/Community/Forums/tabid/795/mid/2108/threadid/144254/scope/posts/Default.aspx#144254

Here is the post

----------------------------------------------

 

Hi guys. We have a custom registration module and after researching some clients concerns we are able to duplicate what I believe is a bug. Can someone shed some light on this issue below.

Basically whenever you set the 'User Page' under Admin, Site Settings in 4.5.3 its now passing some querystring parameters to the URL. These paremeters (without friendly URL's turned on our): &ctl=returnurl=a http return address

With friendly URL's these are: /ctl/returnurl/Default.aspx

The point is its passing a CTL parameter to the querystring which I don't believe is needed? The link/URL works fine if no &ctl is send to the querystring. Can someone explain why this is being added?

2nd, if it is supposed to be there why is it not adding another & before returnURL?

Can someone let me know if this is a bug and if someone else has already reported it? Also if there is a work around for my clients?

-Chad

Chad
Posts:2385
river guide
river guide

06/14/2007 11:18 AM  

Ok, last follow up. From the DotNetNuke post above here is the fix. There are a few suggestions on there but I just want to post for clients here as well so you won't have to dig through it. Also, I am sure this will be fixed in future versions of DotNetNuke so this is only for users working with Dynamic Registration on 4.5.3 specifically.

In the file admin/skins/user.ascx.vb, line 142 needs to be changed:

From:

Response.Redirect(NavigateURL(PortalSettings.UserTabId,"returnurl=" & ReturnUrl), True)

To:

Response.Redirect(NavigateURL(PortalSettings.UserTabId, "", "returnurl=" & ReturnUrl), True)

Then bounce IIS and you should be good to go.

Ricky
Posts:2
new to the springs
new to the springs

12/06/2007 4:38 PM  

Hi, my DNN is 4.7 and DR is of v3.0

After setting user page as one that contains DR, clicking Register link leads users to:
/dnn_iwork_dev/iworker/ProfileManagement/tabid/153/returnurl/ /language/zh-TW/Default.aspx

where you can notice that the red part is weird.

However, this problem was gone after I restart my computer so I cannot reproduce it! Now the url returned becomes:

http://localhost/dnn_iwork_dev/iworker/ProfileManagement/tabid/153/language/zh-TW/Default.aspx?returnurl=%2fDNN_iWork_Dev%2fDefault.aspx%3falias%3dlocalhost%2fDNN_iWork_Dev%2fiWorker

I have no idea what is the reason. Any idea?

Ricky.

 

Ricky
Posts:2
new to the springs
new to the springs

12/06/2007 6:39 PM  

 

My issue (preceeding post) is discussed at

http://www.dotnetnuke.com/Community/Forums/tabid/795/forumid/108/threadid/184743/scope/posts/Default.aspx

This is a bug (http://support.dotnetnuke.com/issue/ViewIssue.aspx?ID=6731&PROJID=2) and someone has provided a workaround in this thread.

Ricky.

You are not authorized to post a reply.



ActiveForums 3.7

Copyright 2005 - 2009 by Data Springs, Inc.
Terms Of Use | Privacy Statement