oturum verileri veritabanına yazılmış olmamak

0 Cevap php

Ben yenilemek yaşıyorum sitesi aşağıdaki gibi session_set_save_handler işlevini kullanarak kendi veritabanına oturum verileri yazıyor:

session_set_save_handler (array(&$ses_class, '_open'), 
                          array(&$ses_class, '_close'), 
                          array(&$ses_class, '_read'), 
                          array(&$ses_class, '_write'), 
                          array(&$ses_class, '_destroy'), 
                          array(&$ses_class, '_gc'));

I have the _open, _close, etc. functions log any calls they receive to the error_log file but upon opening I only see calls to _write and _close. Why would these be the only functions being called?

Also, depending on the page I'm on the _write function can or cannot write to the database, returning an 'Access denied...(using password: NO)' mysql_error.

Ben bir kayıp değilim. Herhangi bir iyi kaynaklar ben bakmak gerekir?

0 Cevap