View Single Post
  #183  
Old 04-11-2003, 04:57 AM
Jim Mayhugh's Avatar
Jim Mayhugh Jim Mayhugh is offline
 
Join Date: Mar 2003
Location: Las Vegas, NV
Posts: 10
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
04-05-03 at 07:09 PM Harken said this in Post #178
I have tried using IE6 and i get the same thing...even setting my browser cache low manually...i just get LOGGING IN... and this is the same for mutiple pop3 servers
I appear to be having the same problem, and it looks as though the session variables set during the "cookie" portion of the code are not being either stored or retrieved properly during the next iteration of the code.

Just for the record, I'm using PHP 4.3.1. Might that also be a difference?

I notice that you use session_register("session_variable") rather than using $_SESSION["session_variable"]. Might that make a difference?

UPDATE:
OK, I got it working. For some reason session_register() is not working properly for me. Everything I read about sessions at www.php.net seems to lean toward using $_SESSIONS[] for parameter passing in later revisions of PHP. Here's the changes I made that worked.

In email.php, look for

//CHANGE SETTINGS ABOVE//

and add just below it:

$session_server=$_SESSION["session_server"];
$session_username=$_SESSION["session_username"];
$session_password=$_SESSION["session_password"];
$type=$_SESSION["session_type"];


then find

session_register("session_server"); $session_server=$host;
session_register("session_username"); $session_username=$user;
session_register("session_password"); $session_password=$pass;
session_register("type"); $type = $opt;

and replace it with:

$_SESSION["session_server"]=$host;
$_SESSION["session_username"]=$user;
$_SESSION["session_password"]=$pass;
$_SESSION["session_type"]=$opt;

I am by no means a PHP programmer, but like I said, it seems to work for me. YMMV
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01148 seconds
  • Memory Usage 1,767KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_quote
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete