Originariamente inviato da Games
ok.
Ora invece ho provato a disattivare i cookie e difatti mi crea n sessioni a ogni refresh.
Ho provato a passargli tramite query string il SID ( nel php.ini l'ho chiamato così ) però continua a crearmi n sessioni. In teoria la session_start se trova nel query string il numero della sessione dovrebbe continuarla no?
ehh no!

ci sono delle opzioni settate nel php.ini ... te ne agevolo un paio con la loro descrizione (da php 5.3

; This option forces PHP to fetch and use a cookie for storing and maintaining
; the session id. We encourage this operation as it's very helpful in combatting
; session hijacking when not specifying and managing your own session id. It is
; not the end all be all of session hijacking defense, but it's a good start.
; http://php.net/session.use-only-cookies
session.use_only_cookies = 1

; trans sid support is disabled by default.
; Use of trans sid may risk your users security.
; Use this option with caution.
; - User may send URL contains active session ID
; to other person via. email/irc/etc.
; - URL that contains active session ID may be stored
; in publically accessible computer.
; - User may access your site with the same session ID
; always using URL stored in browser's history or bookmarks.
; http://php.net/session.use-trans-sid
session.use_trans_sid = 0