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: 52 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:













what is used in maintaining user data of a session in ibuyspy store?

commerce starter kit deployment error with stored procedure output parameters

extended classifieds / sql

what happens when default.aspx is loaded, step by step

error while trying to add to cart

could not add aspnet user to sql server

looking for help with custom commerce application..

provider concept used in commerce starter kit

problems running on hosting site

are images stored in database or the path of the images is stored in database

does the ibuyspy store still exists for downloading?

modifying ibuyspy with visual studin .net

am i missing something, commerce starter kit

could not find stored procedure 'shoppingcartmigrate'

live site - timeout expired!

ibuyspy archetecture

blank page for text

creating subcategories

ok i need help

migrate the sql express to sql server ??

customers address in registration

update stock in products table

how can execute the storedb.sql under the msde enviroment?

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

commerce starter kit

first sql configuration

how to modify data in sql server

understanding n-tier design with commerce starter kit

paypal integration (website payments pro directpay api)

sub categories ? need help~~~

can some one please tell me if im right?

my version of ibuyspy store

configuration help. always displaying logon page.

cannot resolve the collation conflict

how to make ibuyspysetup.exe?

fedex integration

comments on site

can't view the "popups" over the internet (e.g. when uploading an image etc)

how to secure ibs store management pages.

error on install

custom error handling

credit card payment processing

commerce apps not working

subroutine not importing text from textbox

looking to integrate my order processing with ups, airborne or fedex

where can i download commerce starter kit v1.1

new installation - problems

unknown error 0x80005000

how to add the products to my ibuyspy applicaion?

commerce starter kit for access database

   
  Privacy | Contact Us
All Times Are GMT