jakebur01 Posted July 4, 2007 Share Posted July 4, 2007 hey I have problems with my php session id popping up in the url on mac computers and on pc's after you clean out you cache. And on whois.sc .com the session id's appear in the address bar as well. The other guys who have shopping carts that are using sessions that are on the same server do not have this problem. Does anyone know of what I am doing that could be causing this? All am doing is using sessionstart() and $_SESSION[''] . Quote Link to comment Share on other sites More sharing options...
sKunKbad Posted July 4, 2007 Share Posted July 4, 2007 The Session ID will pop up in the URL if session.use_trans_sid=1 in your php.ini file. This happens when the user's browser has cookies either disabled or restricted. Try putting session.use_trans_sid=0 in your php.ini file. Post your chunk of script from session_start(); on up and let me see if there might be something else. Quote Link to comment Share on other sites More sharing options...
jakebur01 Posted July 4, 2007 Author Share Posted July 4, 2007 <?php include ('book_sc_fns.php'); // The shopping cart needs sessions, so start one session_start(); do_html_header('Welcome'); // echo '<font color = #FF0000> <p><b>Select a category below or a brand from above.</b></p></font>'; ?> <?php echo "<TABLE BORDER=1 bgcolor=#FFFFFF bordercolor=RED bordercolorlight=#33CCFF bordercolordark=RED CELLSPACING=1 ALIGN=left>"; echo "<tr><td>"; echo "<b>Please select a category below</b>"; // get categories out of database $cat_array = get_categories(); // display as links to cat pages display_categories($cat_array); echo "</tr></td>"; echo "</table>"; ?> <?php // if logged in as admin, show add, delete, edit cat links if(isset($_SESSION['admin_user'])) { display_button('admin.php', 'admin-menu', 'Admin Menu'); } do_html_footer(); ?> Quote Link to comment Share on other sites More sharing options...
jakebur01 Posted July 4, 2007 Author Share Posted July 4, 2007 My host won't change that cause he says my cart won't work after that. But, none of his carts display the sessionid in the url. It just doesn't add up. Quote Link to comment Share on other sites More sharing options...
sKunKbad Posted July 4, 2007 Share Posted July 4, 2007 There might be session info in the book_sc_fns.php include. Do you see any? Make your own php.ini file. Put it in your root directory, and then add session.use_trans_sid=0 to it, and see for yourself if your cart works. You gotta love a host that tells you what to do. It's your business if you screw up your site not theirs, sheesh. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.