CodeVerge.Net Beta


   Item Entry   Register  Login  
Microsoft News
Asp.Net Forums
IBM Software
Borland Forums
Adobe Forums
Novell Forums




Can Reply:  No Members Can Edit: No Online: Yes
Zone: > Asp.Net Forum > starter_kits_and_source_projects.commerce_starter_kit Tags:
Item Type: Date Entered: 3/26/2005 11:02:28 AM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
NR
XPoints: N/A Replies: 14 Views: 43 Favorited: 0 Favorite
15 Items, 1 Pages 1 |< << Go >> >|
"enderc" <>
NewsGroup User
Register Page not working3/26/2005 11:02:28 AM

0

When I Click register button I can't go to register page and opening login page again. I write to exploer adres http://localhost/CommerceCSVS/register.aspx and try to go this way but it's not run and login page is open. please help me...
"silvan_zhong"
NewsGroup User
Re: Register Page not working4/6/2005 5:26:06 AM

0

I found the some problem, please help me too!!
"monu245" <>
NewsGroup User
Re: Register Page not working4/16/2005 1:59:44 AM

0

make sure that the following code is written in web.config

    <location path="Register.aspx">
        <system.web>
            <authorization>
                <allow users="?" />
            </authorization>
        </system.web>
    </location>
    <location path="AccessDenied.aspx">
        <system.web>
            <authorization>
                <allow users="?" />
            </authorization>
        </system.web>
    </location>
    <location path="ErrorPage.aspx">
        <system.web>
            <authorization>
                <allow users="?" />
            </authorization>
        </system.web>
    </location>


Monu245
http://www.codaddict.com - A new way to share/store/bookmark your code snippets
"DanBall" <>
NewsGroup User
Re: Register Page not working4/20/2005 3:05:11 PM

0

 monu245 wrote:
make sure that the following code is written in web.config

    <location path="Register.aspx">
        <system.web>
            <authorization>
                <allow users="?" />
            </authorization>
        </system.web>
    </location>
    <location path="AccessDenied.aspx">
        <system.web>
            <authorization>
                <allow users="?" />
            </authorization>
        </system.web>
    </location>
    <location path="ErrorPage.aspx">
        <system.web>
            <authorization>
                <allow users="?" />
            </authorization>
        </system.web>
    </location>

What portion of the web.config does this go into?

"monu245" <>
NewsGroup User
Re: Register Page not working4/23/2005 7:10:59 PM

0

web.config will look like this

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <appSettings> blah........
    </appSettings>
<system.web>
        <compilation debug="true" />
        <pages validateRequest="true" />         
        <!-- enable Forms authentication -->
        <authentication mode="Forms">
            <forms name="CommerceAuth" loginUrl="login.aspx" protection="All" path="/" />
        </authentication>
        <!-- enable custom errors for the application -->
        <customErrors mode="RemoteOnly" defaultRedirect="ErrorPage.aspx" />
        <!-- disable session state for application -->
        <sessionState mode="Off" />
         <globalization fileEncoding="utf-8" requestEncoding="utf-8" responseEncoding="utf-8"/>
    </system.web>
<location path="Register.aspx">
        <system.web>
            <authorization>
                <allow users="?" />
            </authorization>
        </system.web>
    </location>
    <location path="AccessDenied.aspx">
        <system.web>
            <authorization>
                <allow users="?" />
            </authorization>
        </system.web>
    </location>
    <location path="ErrorPage.aspx">
        <system.web>
            <authorization>
                <allow users="?" />
            </authorization>
        </system.web>
    </location>
</configuration>

Monu245
http://www.codaddict.com - A new way to share/store/bookmark your code snippets
"DanBall" <>
NewsGroup User
Re: Register Page not working4/24/2005 2:49:38 AM

0

 monu245 wrote:
web.config will look like this

Thanks, I'll test it out...

"DanBall" <>
NewsGroup User
Re: Register Page not working4/25/2005 2:22:32 AM

0

 DanBall wrote:

 monu245 wrote:
web.config will look like this

Thanks, I'll test it out...

No go, put those entries in there and it still goes to the login page when I click register.

"yc1911" <>
NewsGroup User
Re: Register Page not working4/26/2005 6:40:50 PM

0

Hi all,
I've got almost the same problem, and inserted the security-related code into "Webconfig" as above in the hope of solving the registering problem.
Unfortunately, when clicking "Submit" button, it just doesn't work all.
The message bar, which is on the left-down part of IE browser, simply shows "done", and the page doesn't seem to move at all.
I tried to trace the C# code in "Register.aspx", but it seemed that the process could have never even gone into the "if (Page.IsValid) ...." code block.

Could anybody kindly help me out of such annoying problem?
Thanks in advance.

"DanBall" <>
NewsGroup User
Re: Register Page not working4/26/2005 10:25:35 PM

0

Finally figured it out!  For those of you having the problem, check the permissions on your "User Account" module.  Apparently DNN uses the same module for both the User Account editing and New User registration.  Once I changed it from Registered Users back to All Users it started working again.

Discovered this while reading the manual for another module that talked about this.  Never would have figured it out otherwise!

 

"yc1911" <>
NewsGroup User
Re: Register Page not working4/28/2005 5:04:02 PM

0

hi DanBall

Would you please describe more about your solution to the problem?
I'm not able to figure out what a "DNN" is nor to reach the "User Account" module.
And where can I get the manual for all the modules used in Commerce StratKit?

thank you so much

"DanBall" <>
NewsGroup User
Re: Register Page not working4/28/2005 5:23:20 PM

0

 yc1911 wrote:
Would you please describe more about your solution to the problem?
I'm not able to figure out what a "DNN" is nor to reach the "User Account" module.
And where can I get the manual for all the modules used in Commerce StratKit?

DNN=DotNetNuke, the program you are using...

User Account Module- This is a module that you can add to any page using the controls at the top of the screen (when logged in as admin).  This module allows you to edit your account information, name, address, phone number, etc... 

If you do NOT add this module onto any pages, and use the default configuration, you see this module only when you register, or when you click on your name in the top right of the screen.  

If you DO add this module onto a webpage, you can then go into the admin Site Settings page and change it so that that page is displayed instead of the default one.  This allows you more room for customization, you can then edit your registration/user account page to look however you want.  However, make SURE that "All Users" has access to view that page!  If you don't allow that, an unathenticated user will not be able to see it, and new user registration is essentially disabled!

Does that help?

As for manuals, I haven't really seen any, it's mostly learn-as-you-use... Someone else might have a better answer for you on that question.

 

 

"yc1911" <>
NewsGroup User
Re: Register Page not working5/1/2005 5:37:15 PM

0

Oh! Now I see.

DanBall and I are discussing the different problem.

Neither the DNN nor that User Acount Module is used.

I'm simply confronted by the register problem.  The two image buttons -- "Regis_Btn" and "Login_Btn" -- of Register.apx and Login.apx don't respond to mouse clicking.

I'd like to say thank-you-very-much to DanBall anyway.  But can anybody offer your expriences of such problems? 

"SantiagoEPerez
NewsGroup User
Re: Register Page not working5/9/2005 4:45:23 PM

0

Different Problem for me. I created another set of Registration pages and is loading when it's supposed to. THe only problem I have is that I can't seem to get the Register Linkbutton to come up at all????

I've the the User Page correctly in Site Settings and the module comes up when I click on Register.

Anyone?

 


Santiago Perez
IT Consultant

South Florida
"DanBall" <>
NewsGroup User
Re: Register Page not working5/10/2005 3:25:47 AM

0

 SantiagoEPerez wrote:
Different Problem for me. I created another set of Registration pages and is loading when it's supposed to. THe only problem I have is that I can't seem to get the Register Linkbutton to come up at all????

I've the the User Page correctly in Site Settings and the module comes up when I click on Register.

Anyone?

Probably not the problem, but what is your registration setting in Admin->Site Settings?  Do you have it set up as a private system?

"Narly" <>
NewsGroup User
Re: Register Page not working8/1/2005 12:17:15 AM

0

Hi Yc1911,

I've got the same problem with Regis_btn and Login_bnt.  Could you tell us how you fixed the problem. Please. Thanks.
15 Items, 1 Pages 1 |< << Go >> >|


Free Download:













problem getting shoppingcart page to update

register button problem

problem with getting cartid

bug: updateshoppingcartdatabase()

htm files in vbvs

cannot see a control module .ascx in design view in visual studio

codebehind version

error in register.aspx

source code available for commerce site with admin & paypal

dsn entries on asp.net

ibuyspy not logging in when using web forwarding

why do user controls .ascx have a "public abstract class" (abstract ?)

ui for pages entirely with vs graphical editor, no html entry?

new installation - problems

integrating paypal shopping cart

problem updating data

how should i set up the envirment to use ibuyspy store

where are sqldataadapters closed?

why does the forum show only 1.1, when version 2 is already around

remotely updateable commerce

cart update bug

problem running new mk.bat

website

category nav question...

can't install

securing login.aspx page as ssl page / forms authentication question

problems with csk - stored procedure missing

please help! postback problem...

bug mk.bat error

ozmcart

commerce stater kit installation database

error while running the app

installing the commerce kit + mysql

about n tier design in the kit

i buy spy store db install problem

opening the project with visual studio.net

sales support application: any recommendations?

ms commerce server 2002

cannot browse http://localhost/commercevbvs/

err about cartid?

quantity adding from addtocart link?

auto upload product to csk commerce starter kit.

sql issue w/ registration

automatically adjust price

creating the data access layer

question eula e gpl.

error when trying to run csk2.vsi file

multiple shipping addresses

can't connect to database

will iis 4.0 work with this software?

   
  Privacy | Contact Us
All Times Are GMT