Visualizzazione risultati 1 fino 2 di 2

Discussione: [PHP] Session scaduta?

  1. #1
    Guest

    Predefinito [PHP] Session scaduta?

    Mi sono accorto che se lascio il mo programma php inattivo per un tot minuti il file di session che ho creato e contiene dei dati utili per il corretto funzionamento del sito vengono cancellate.


    E' una cosa che fa di suo il server di altervista per eliminare files superflui?


    tnx!

  2. #2
    L'avatar di Evcz
    Evcz non è connesso Utente storico
    Data registrazione
    31-05-2002
    Residenza
    Vicenza
    Messaggi
    5,670

    Predefinito

    dopo quanto tempo?

    comunque e' una cosa che fa di suo php, su qualsiasi host... un compito svolto dal GC...

    se non erro su altervista le sessioni possono scadere (essere ripulite dal garbage collector), con probabilità all'1%, dopo 24minuti...

    queste le impostazioni attuali
    session.gc_divisor 100
    session.gc_maxlifetime 1440
    session.gc_probability 1
    session.gc_probability integer

    session.gc_probability in conjunction with session.gc_divisor is used to manage probability that the gc (garbage collection) routine is started. Defaults to 1. See session.gc_divisor for details.

    session.gc_divisor integer

    session.gc_divisor coupled with session.gc_probability defines the probability that the gc (garbage collection) process is started on every session initialization. The probability is calculated by using gc_probability/gc_divisor, e.g. 1/100 means there is a 1% chance that the GC process starts on each request. session.gc_divisor defaults to 100.


    session.gc_maxlifetime integer

    session.gc_maxlifetime specifies the number of seconds after which data will be seen as 'garbage' and cleaned up.
    Ultima modifica di Evcz : 16-06-2006 alle ore 11.57.58
    There are three kinds of people in this world: people who watch things happen ... people who complain about things that happen ... and people who make things happen...

Regole di scrittura

  • Non puoi creare nuove discussioni
  • Non puoi rispondere ai messaggi
  • Non puoi inserire allegati.
  • Non puoi modificare i tuoi messaggi
  •