Jump to content

djdealer

Members
  • Posts

    10
  • Joined

  • Last visited

    Never

About djdealer

  • Birthday 07/19/1988

Contact Methods

  • Website URL
    http://www.saintevil.lv

Profile Information

  • Gender
    Male

djdealer's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. i don`t know how, but i have done it. i don`t do anything, but it start working in IE too. anyway tnx =]
  2. yes, session_start() i recall on top of every page.
  3. I use login script: session_start(); session_regenerate_id(); $_SESSION[id] = $rows[id]; session_write_close(); header("location: logged_in.php"); in other browsers this work fine, but in IE i get back on login page. i tested echo $_SESSION[id] after i give value to $_SESSION[id], it show my needed id, but when i test echi $_SESSION[id] in logged_in.php page, $_SESSION[id] was be emty! where is problem? Why only on IE this not work?
  4. i make online browser based game, and i wont, that other players dont see urls.
  5. Hi! i have urls like: http://www.mysite.com/forum.php?x=103 http://www.mysite.com/news/new.php?nw=12 I need that all theese urls in browser`s address bar show like http://www.mysite.com/ but without using frames. I think that been done in .htaccess with following strings: RewriteEngine ON RewriteRule ??? If that is right, what i need to write after RewriteRule, to output only http://www.mysite.com/ in browser`s address bar? tnx =]
  6. PHP version 5.2.9! to count and determining if user is logged in i use database table. yes, i use the built-in session file save handler. before i buy this host i use free hosting, and on that hosting my page work fine. maybe bug is in latest scripts i have write. but tnx, now i know where to search for problem.
  7. a) i buy hosting (for 3 months) at hosting24.com b) actually i don`t know (i don`t know to much about hostings), but i found in my hosting account information this: Apache version 2.2.11 (Unix). c) yes i check and all values are in effect d) session.auto_start OFF (i use start_session() in every page) e) i keep .htaccess in same folder where i have all pages of my web. (i don`t know hot to confirm that the the settings are in effect in all the folders)
  8. apart from witch page i visit, it log me out. when i close tab or my browser and go again to my page, i still be logged in (that i need). some time i can be logged in all night, but some time i log in and after some seconds i get logget out. i tested page with friends, and we all get logged out in same time.
  9. Hi! I have problem with sessions (i think)! I need that when user log in, he stay in my wb for 24 hours, but all my users time to time get loged out after hour, 30min or 1min (in any time and i think all users at the same time) I use .htaccess to set values for session. Here is a peace from .htaccess: php_value session.save_path "/home/mysite/tmp/sessions" php_value session.cookie_lifetime 86400 php_value session.cache_expire 1440 php_value session.gc_maxlifetime 86400 php_value session.gc_probability 1 php_value session.gc_divisor 100 Is there all right if i need session for 24hours? Why all users get logged out before time? tnx for help! =]
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.