Karol Kossut Gold Membership
 Nuke Active Member Posts:48

 |
| 7/22/2007 6:12 AM |
|
Hello,
I run DNN453 with latest friendly urls module. You can see an example on www.lowicz.vcity.pl. If you choose "register" option from skinobject placed on the right-top - you will see an empty page without registration form. If you choose http://www.lowicz.vcity.pl/Profil/Ustawieniakonta.aspx from the menu - you will see my custom registration page (standard DNN registration module plus some informations for visitors). The page is defined in site settings as the "account settings" page of this portal.
I don't know what to do in this situation, because I wont remove human friendly urls and go back to the standard url rewriting system :(
Please help me :(
Best regards!
Karol Kossut |
|
|
|
|
Karol Kossut Gold Membership
 Nuke Active Member Posts:48

 |
| 7/22/2007 6:23 AM |
|
I have one more important information:
normally, when I have clicked "Register" i see this url:
http://www.lowicz.vcity.pl/Profil/Ustawieniakonta/tabid/23613/ctl/returnurl/Default.aspx
... and I don't see anything on the page.
But if I manually remove ctl/returnurl/ element - everything works fine!
So, is it fault of the new returnurl DNN command?
Maybe someone have an idea how to disable it?
Regards!
Karol Kossut |
|
|
|
|
Scott McCulloch Administrators
 Nuke Master Posts:12820


 |
| 7/23/2007 4:31 AM |
|
Can you turn friendly urls off, I think the URL is malformed with parameters. The ctl and returnurl should be parameters in their own right.
e.g. ctl=something and returnurl=someurl |
|
Scott McCulloch Site Administrator |
|
|
Karol Kossut Gold Membership
 Nuke Active Member Posts:48

 |
| 7/23/2007 4:49 AM |
|
| I know, I can turn off firendly urls, but I don't want to. :( Do you think that the problem is uncommon, and appears only in my environment ? |
|
|
|
|
Scott McCulloch Administrators
 Nuke Master Posts:12820


 |
| 7/23/2007 5:15 AM |
|
The reason I ask for the URL is so I can see how it is formed, the friendly url provider takes that url and converts it.
|
|
Scott McCulloch Site Administrator |
|
|
Karol Kossut Gold Membership
 Nuke Active Member Posts:48

 |
| 7/23/2007 3:10 PM |
|
| Ah yes - now I understand. I will do it and show you the same urls as in first post untransformed by friendly urls. |
|
|
|
|
WB Registered Users
 Nuke Newbie Posts:3

 |
| 7/29/2007 8:31 PM |
|
| If it's any consolation - I've been with DNN since version 1 and I'm having the same problems. There's definitely something wrong with the DNN USer skin object. |
|
|
|
|
WB Registered Users
 Nuke Newbie Posts:3

 |
| 7/29/2007 8:47 PM |
|
Here's my temporary workaround. I'm embedding a little server side code in the skin (I hope this works with the message board):
<% If Me.Page.User.Identity.IsAuthenticated then %>
<% else %>
Register
<% End If %> |
|
|
|
|
WB Registered Users
 Nuke Newbie Posts:3

 |
| 7/29/2007 8:49 PM |
|
I'll try that again (adding some "--") to make the post work
<% If Me.Page.User.Identity.IsAuthenticated then %>
< -- dnn:USER runat="server" id="dnnUSER" CssClass="HeaderText" -- >
<% else %>
< -- a href="/Home/UserAccount/tabid/59/Default.aspx">Register < -- / a>
<% End If %> |
|
|
|
|
Karol Kossut Gold Membership
 Nuke Active Member Posts:48

 |
| 7/30/2007 1:55 AM |
|
I was thinking about something like that, but for me the second statement shall be < -- a href="/register.aspx">Register < -- / a>, because I run over 1000 portals in my DNN instance:) BTW, the problem is only when register page is defined as custom. Default register works normaly. Thanks! K.Kossut |
|
|
|
|