Session Info Added to URL

Ask a Question related to PHP Development, Design and Development.

  1. #1

    Default Re: Session Info Added to URL

    [email]pleury@celebrate-software.com[/email] (Celebrate) wrote in message news:<8bafcced.0310122018.878f0e@posting.google.co m>...
    > I'm noticing that when my homepage first starts up, all the menu links
    > to other pages have the session info appended to the URL. For example:
    >
    > href="products/product_list.php?PHPSESSID=45759f8aadee64cff2db657 48977ac67"
    >
    > This is done automatically as the original URL that I coded does not
    > have the session information added to it.
    >
    > My first question is, is this normal behavior? The reason I'm
    > concerned is I have been tracking the Google Bot's activity on our
    > site and it hits the homepage and does not crawl the other pages. I'm
    > concerned the added session info is throwing it off.
    It's because in you PHP.ini file, you have session.use_trans_sid
    = 1. See [url]http://cvs.php.net/co.php/php-src/php.ini-dist[/url]
    >
    > Should I be concerned
    Not much except for security reasons. Look at your ini file's
    session section for more stuff.

    ---
    "US got a nuclear bomb that can destroy the world 13 times. Russia
    got a nuclear bomb that can destroy the world 7 times. But...my
    friend! Tell me! CAN YOU KILL A MAN TWICE??!!!!!" -- P.A.Sangma, Peace
    loving Indian politician against India's step to go for a nuclear
    test.
    Email: rrjanbiah-at-Y!com
    R. Rajesh Jeba Anbiah Guest

  2. Similar Questions and Discussions

    1. Pass session info between Coldfusion and ASP
      I have one website that is Coldfusion and one that is ASP. At this time, it is not feasible to rewrite the ASP page to CF. The Coldfusion page...
    2. Info not being added to db, why??
      I am trying to update the status of a user, within a MySql table. This should happen as the user signs on and gets assigned a session. <cfquery...
    3. How to get or read Session Info from Java Web Service?
      Hi Everyone, I am accessing a Java web service from my Windows Form App wrttien in Vb.Net. I want to read some cookies set by the web service....
    4. Getting info about SSL session from code
      Hi, How can I retrieve SSL session details from ASP.NET web page code? I could get info about key size (by HTTPS_KEYSIZE variable) but I don't...
    5. note 33962 added to function.gd-info
      Thanks, that worked for me, much appreciated... :) ---- Manual Page -- http://www.php.net/manual/en/function.gd-info.php Edit Note --...
  3. #2

    Default Session Info Added to URL

    I'm noticing that when my homepage first starts up, all the menu links
    to other pages have the session info appended to the URL. For example:

    href="products/product_list.php?PHPSESSID=45759f8aadee64cff2db657 48977ac67"

    This is done automatically as the original URL that I coded does not
    have the session information added to it.

    My first question is, is this normal behavior? The reason I'm
    concerned is I have been tracking the Google Bot's activity on our
    site and it hits the homepage and does not crawl the other pages. I'm
    concerned the added session info is throwing it off.

    Should I be concerned and if so, is there a way of preventing it from
    appending the session info? I don't have the option of removing the
    session_start() from the page because I must test for a session
    variable.

    Any help on this would be greatly appreciated...

    Paul
    Celebrate Guest

  4. #3

    Default Re: Session Info Added to URL

    [email]ng4rrjanbiah@rediffmail.com[/email] (R. Rajesh Jeba Anbiah) wrote in message news:<abc4d8b8.0310130427.1b6541de@posting.google. com>...
    > [email]pleury@celebrate-software.com[/email] (Celebrate) wrote in message news:<8bafcced.0310122018.878f0e@posting.google.co m>...
    > > I'm noticing that when my homepage first starts up, all the menu links
    > > to other pages have the session info appended to the URL. For example:
    > >
    > > href="products/product_list.php?PHPSESSID=45759f8aadee64cff2db657 48977ac67"
    > >
    > > This is done automatically as the original URL that I coded does not
    > > have the session information added to it.
    > >
    > > My first question is, is this normal behavior? The reason I'm
    > > concerned is I have been tracking the Google Bot's activity on our
    > > site and it hits the homepage and does not crawl the other pages. I'm
    > > concerned the added session info is throwing it off.
    >
    > It's because in you PHP.ini file, you have session.use_trans_sid
    > = 1. See [url]http://cvs.php.net/co.php/php-src/php.ini-dist[/url]
    >
    > >
    > > Should I be concerned
    >
    > Not much except for security reasons. Look at your ini file's
    > session section for more stuff.
    >
    > ---
    > "US got a nuclear bomb that can destroy the world 13 times. Russia
    > got a nuclear bomb that can destroy the world 7 times. But...my
    > friend! Tell me! CAN YOU KILL A MAN TWICE??!!!!!" -- P.A.Sangma, Peace
    > loving Indian politician against India's step to go for a nuclear
    > test.
    > Email: rrjanbiah-at-Y!com
    Thanks for the help guys.

    Paul
    Celebrate Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139