Session not available in Include file

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • BlueFrog

    Session not available in Include file

    Hey,

    Anyone got any ideas why I wouldn't be able to output a value stored in the
    session array in a particular include file - I am using session_start() but
    to no avail.

    Joe


  • Gert

    #2
    Re: Session not available in Include file

    > Anyone got any ideas why I wouldn't be able to output a value stored in
    the[color=blue]
    > session array in a particular include file - I am using session_start()[/color]
    but[color=blue]
    > to no avail.[/color]

    please post some code to make it easier to help you!

    Gert.


    Comment

    • BlueFrog

      #3
      Re: Session not available in Include file

      Well, I know the code to set the session is working because if it's not I am
      redirected from my secure url

      Anyway, for what it's worth here's the code

      User logs in by posting credentials to login.php which checks the database
      to make sure he's registered and then if he is executes the following code
      to set the session

      session_start() ;
      header("Cache-control: private");
      $_SESSION["auth"] = trim($_POST["username"]);

      logged in user is then redirected to a protected page
      the protection code resides in an include and says

      session_start() ;
      header("Cache-control: private");

      if (!isset($_SESSI ON["auth"]))
      {
      header("Locatio n: ".$myWwwPath."l ogin.php");
      }

      This works fine - if the user tries to access the page without logging in
      they are successfully redirected

      On all pages on the site I want to have an include file
      which when a user is logged in displays a table with their login info - i.e.
      $_SESSION['auth'] so I made and included the file

      <?php include("config .php");?>
      <?php
      session_start() ;



      if (isset($_SESSIO N["auth"]))
      {
      ?>
      <table border="0" cellpadding="4" cellspacing="0" >
      <tr>
      <td align="center">
      <img src="<?php echo $myWwwPath; ?>resources/images/key_icon.gif"
      align="absmiddl e"/>
      <span>Logged In As:</span><br/>
      <span><?php echo $_SESSION["auth"];?></span>
      </td>
      </tr>
      </table>
      <?php }
      else{
      }

      Incidentally, config.php doesn't make any output to the browser or contain
      any blank lines.

      echoing $_SESSION['auth'] in the include produces nothing!

      I'm a php newbie as ASP and ASP.NET is my normal environment. Could it be
      something to do with scope as the include is included in another include?

      Joe


      "Gert" <gert@mellak.co m> wrote in message
      news:cilu5c$18n $1@newsreader1. utanet.at...[color=blue][color=green]
      >> Anyone got any ideas why I wouldn't be able to output a value stored in[/color]
      > the[color=green]
      >> session array in a particular include file - I am using session_start()[/color]
      > but[color=green]
      >> to no avail.[/color]
      >
      > please post some code to make it easier to help you!
      >
      > Gert.
      >
      >[/color]


      Comment

      • BlueFrog

        #4
        Re: Session not available in Include file

        Hmmm, I've just noticed something else that may be important to diagnosing
        the problem here - when I try to access my include directly in the browser
        on it's onw the code works fine. (the include has a php extension which is
        why I can access it). So it would appear that it's because it's an include
        that there's a problem - I am using require_once to include it.

        Joe

        "BlueFrog" <bluefrog@hyp er-typer.com> wrote in message
        news:gNt3d.3149 1$Z14.10316@new s.indigo.ie...[color=blue]
        > Hey,
        >
        > Anyone got any ideas why I wouldn't be able to output a value stored in
        > the session array in a particular include file - I am using
        > session_start() but to no avail.
        >
        > Joe
        >[/color]


        Comment

        Working...