Announcement

Collapse
No announcement yet.

Login Page redirect

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Login Page redirect

    I want to place a separate login page for my members to be able to login to and then be taken to a new page.

    I have followed the instructions from page 62 of the Advanced users guide but when i test this new page the default page is my index page.
    I have changed the default page to the url where i would like them to go to but it defaults to the index page.

    Just to clarify, i want to have separate login area which will link straight to a non brouchure page, a stand alone html page within the acatalog folder.
    Please help.

    Darren
    Last edited by DarrenH; 15-Aug-2004, 01:02 PM. Reason: More information

    #2
    Hi Darren,

    Try the following:

    Open 'AccountScript,pl' (found in your Site folder - take a backup first)
    Locate sub CAccPrintPage
    Scroll down to...

    Code:
    my ($sFirst,$sLast) = split("#",$sProductPage);
    Immediately before this line insert...
    Code:
    if ($sProductPage eq $$::g_pSetupBlob{'CATALOG_PAGE'} )
            {
            $sProductPage = "yourpagename.html";
            }
    (replace 'yourpagename.html' with the page you want it to go to (as long as that page resides in the 'acatalog' folder on the server)

    Save and close the file and upload the site.

    Please note that Actinic is not able to provide any detailed support for script changes made.
    ********************
    Tracey
    SellerDeck

    Comment

    Working...
    X