|
Posted by zorro on 03/04/07 15:35
On Mar 3, 8:50 pm, "Vic Spainhower" <v...@showsec.com> wrote:
> Hello,
>
> Can someone tell me why on some computers the following list will fail . I
> have a user reported that some of the links in the below list will fail and
> some will work. The ones that fail will have the www missing in the URL. For
> example when this particular computer will have the link ashttp://mysite.com/entry_page.php instead ofhttp://www.mysite.com/entry_page.php
>
> This is only happening on 1 computer as far as I know and I sure can't
> explain it. Hope you can!
>
> This you very much!
>
> Vic
>
> <div id="navcontainer">
> <ul id="navlist">
> <li><a href="judges.php" >Judges</a></li>
> <li><a href="entry_page.php" >Enter Horse</a></li>
> <li><a href="fileupload.php?do=upload">Show Schedule</a></li>
> <li><a href="classes_listdetail.php?do=<?php echo $_SESSION['ShowID'];
> ?>">Class List</a></li>
> <li><a href="showresults.php">Show Results</a></li>
> <li><a href="myhorses.php">My Horses</a></li>
> <li><a href="removeshow.php?remove=<?php echo $_SESSION['ShowID'];
> ?>">Remove Show</a></li>
> </ul>
> </div>
On Mar 3, 8:50 pm, "Vic Spainhower" <v...@showsec.com> wrote:
> Hello,
>
> Can someone tell me why on some computers the following list will fail . I
> have a user reported that some of the links in the below list will fail and
> some will work. The ones that fail will have the www missing in the URL. For
> example when this particular computer will have the link ashttp://mysite.com/entry_page.php instead ofhttp://www.mysite.com/entry_page.php
>
> This is only happening on 1 computer as far as I know and I sure can't
> explain it. Hope you can!
>
> This you very much!
>
> Vic
>
> <div id="navcontainer">
> <ul id="navlist">
> <li><a href="judges.php" >Judges</a></li>
> <li><a href="entry_page.php" >Enter Horse</a></li>
> <li><a href="fileupload.php?do=upload">Show Schedule</a></li>
> <li><a href="classes_listdetail.php?do=<?php echo $_SESSION['ShowID'];
> ?>">Class List</a></li>
> <li><a href="showresults.php">Show Results</a></li>
> <li><a href="myhorses.php">My Horses</a></li>
> <li><a href="removeshow.php?remove=<?php echo $_SESSION['ShowID'];
> ?>">Remove Show</a></li>
> </ul>
> </div>
Maybe the SESSION data is lost on 2nd domain :
If on http://mysite.com/page.php you do:
session_start();
$_SESSION['data']='something';
on http://www.mysite.com/page.php:
session_start();
$_SESSION['data'] might be nothing...
because cookie is different for
http://www.mysite.com and http://mysite.com
Navigation:
[Reply to this message]
|