Results 1 to 3 of 3
  1. #1
    Join Date
    May 2008
    Posts
    31
    Plugin Contributions
    0

    Default Problem redirecting to another page

    I have made modifications to allow php scripts in ezpages. Now I want to create a new page that is only available to members who are signed in. I have put the following code in to see if there is a session variable present. If so, I would like to show the page to the user. If not, I want the user to be redirected to the login page.

    Here is the code I have at the very top of the page:

    Code:
    <?php
    if (empty($_SESSION['customer_id'])) {
    	header("Location: index.php?main_page=login");
    	exit;
    }
    else {
    
    /*here is the stuff that gets shown to the user */
    
    }
    ?>
    The results I'm getting:

    When I am logged in, I see all the content -> GREAT!

    When I'm not logged in, the page is blank and I don't get redirected.--> BAD!

    When I test the header() redirect in a test file in the Catalog directory, it works. Is this a permissions problem?

    Any suggestions are appreciated. Thanks, D

  2. #2
    Join Date
    Apr 2004
    Location
    UK
    Posts
    5,821
    Plugin Contributions
    2

    Default Re: Problem redirecting to another page

    http://www.zen-cart.com/forum/showthread.php?t=63890
    Previous thread above should help

  3. #3
    Join Date
    May 2008
    Posts
    31
    Plugin Contributions
    0

    Default Re: Problem redirecting to another page

    Thanks Misty! I made some similar changes and seem to be making progress.

    Dustin


 

 

Similar Threads

  1. v151 Strange issue with redirecting from another website
    By magz in forum General Questions
    Replies: 6
    Last Post: 25 May 2013, 07:28 PM
  2. redirecting to another URL
    By rjeproductions in forum General Questions
    Replies: 1
    Last Post: 23 Mar 2011, 12:01 AM
  3. Redirecting one zen cart to another during payment
    By dionb85 in forum General Questions
    Replies: 3
    Last Post: 13 Jan 2010, 02:30 AM
  4. Login Page/Checkout Redirecting to another site
    By booghaboobaby in forum General Questions
    Replies: 3
    Last Post: 4 Jan 2008, 06:07 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg