| Author |
|
marty85086 New User


Joined: February/27/2009 Location: United States
Online Status: Offline Info: 4
|
| Added: February/28/2009 at 9:11am | IP Logged
|
|
|
I'm in the process of installing ASPProtect 8 and seem to be stuck. Everything seems to work fine, except for authorizing users to access a protected page.
I've set up several test pages with different level or group protections and I'm testing them with test users with corresponding level or group access. When the user is asked to log-in, the application attempts to authorize, but then hangs up without completing.
Any suggestions? Thank you.
__________________ Marty
|
| Back to Top |
|
| |
cwilliams Admin Group

CJWSoft Web Software Developer
Joined: April/06/2004
Online Status: Offline Info: 1769
|
| Added: February/28/2009 at 10:16am | IP Logged
|
|
|
Let me ask you this, do the protected example pages function..
Also, showing the code your using and explaining the names of the pages in question could be helpful.. more details the better
__________________
Best Regards,
Christopher Williams
www.CJWSoft.com
|
| Back to Top |
|
| |
marty85086 New User


Joined: February/27/2009 Location: United States
Online Status: Offline Info: 4
|
| Added: February/28/2009 at 12:09pm | IP Logged
|
|
|
Thanks for getting back to me. I've tried the example protected pages and they have the same problem. They attempt to authorize, but go no where.
Here are two (2) examples of the code I used on my pages:
Page URL: http://www.contactcenterpro.com/aspprotect/test_landing_leve l1.asp
Protective Code:
<!-- Begin ASPProtect Code --> <!-- Level (1) Users have access to this page. --> <% CHECKFOR = "1" %> <!--#INCLUDE FILE="check_user_inc.asp"--> <!-- End ASPProtect Code -->
Page URL:
http://www.contactcenterpro.com/aspprotect/test_landing_grou p1.asp
Protective Code:
<!-- Begin ASPProtect Code --> <!-- Groups with access to this page. ( * eLearning Series Parts 1 thru 3 * ) --> <% GROUPACCESS = "1" %> <!--#INCLUDE FILE="check_user_inc.asp"--> <!-- End ASPProtect Code -->
I hope this helps. Let me know if you need anything more.
Thanks
__________________ Marty
|
| Back to Top |
|
| |
cwilliams Admin Group

CJWSoft Web Software Developer
Joined: April/06/2004
Online Status: Offline Info: 1769
|
| Added: February/28/2009 at 2:55pm | IP Logged
|
|
|
ok..
I will look into all of this monday when I get back in the office.. right now I am with my family on a weekend thing..
__________________
Best Regards,
Christopher Williams
www.CJWSoft.com
|
| Back to Top |
|
| |
marty85086 New User


Joined: February/27/2009 Location: United States
Online Status: Offline Info: 4
|
| Added: February/28/2009 at 4:09pm | IP Logged
|
|
|
Enjoy your family weekend. Thanks for your help.
__________________ Marty
|
| Back to Top |
|
| |
cwilliams Admin Group

CJWSoft Web Software Developer
Joined: April/06/2004
Online Status: Offline Info: 1769
|
| Added: March/02/2009 at 10:07am | IP Logged
|
|
|
I;m back..
Ok, I need a username/password to try on that page.. the admin username/password would be best.
Please PM the information...
And if I can't figure anything out I'll need to go into you site via ftp or something to find out what is really going on.
__________________
Best Regards,
Christopher Williams
www.CJWSoft.com
|
| Back to Top |
|
| |
pitchout New User

Joined: December/10/2010 Location: United States
Online Status: Offline Info: 2
|
| Added: December/10/2010 at 2:04pm | IP Logged
|
|
|
Hello CJW,
I was wondering if this issue was resolved. I am currently having the same
problem.
Kind regards,
|
| Back to Top |
|
| |
cwilliams Admin Group

CJWSoft Web Software Developer
Joined: April/06/2004
Online Status: Offline Info: 1769
|
| Added: December/11/2010 at 11:32am | IP Logged
|
|
|
If I remember correctly it wasn't anything major just an incrrect setting/permissions or something.. but it's been a while.. I dont fully remember what happenned..
Please start a new thread and I'll help ya out.. if need be I can go in as I did for this guy and look around..
__________________
Best Regards,
Christopher Williams
www.CJWSoft.com
|
| Back to Top |
|
| |
pitchout New User

Joined: December/10/2010 Location: United States
Online Status: Offline Info: 2
|
| Added: December/13/2010 at 7:33pm | IP Logged
|
|
|
Thank you for the feedback. I should have mentioned that I am trying to
use a group protection code, and url forwarding. I am attempting to
customize pages and protection for each user (1 group per user). It gives
me the error message:
Safari cant open the page.
Too many redirects occurred trying to open http://*****/***/*****.com.
This might occur if you open a page that is redirected to open another
page which then is redirected to open the original page.
I believe I understand why, I would just like to keep it from happening.
Is it possible?
-Thanks,
JJ
|
| Back to Top |
|
| |
cwilliams Admin Group

CJWSoft Web Software Developer
Joined: April/06/2004
Online Status: Offline Info: 1769
|
| Added: December/13/2010 at 10:19pm | IP Logged
|
|
|
while I'm not completly sure what you have going on I will say this..
redirection is in my opinion is not good site design.. and yes .. u start doing too much of it your gonna have problems.. browsers for one don't like it and think something is up..
Web Scripting Technologies like ASP are all about making things dynamic.. u should be dynamically showing different content to a logged in user based on the username or what groups they belong to or some other info, etc etc.. not redirecting them to all these different places.. especially not multiple times..
well organized if else logic and include files can make it all a very organized and easy to deal with..
that's my take on things.. don't redirect unless you absolutely have to, make your life a heck of a lot easier, and end up with a better site design..
__________________
Best Regards,
Christopher Williams
www.CJWSoft.com
|
| Back to Top |
|
| |