Quote:
Originally Posted by BlackxRam
Which post are you referring to? If i close my browser and return to the gallery directly I am not logged in...so which post has the fix for this?
|
If that doesnt fix, do this test:
go to your /4images/includes/sessions.php
look for
PHP Code:
function start_session($user_id = GUEST, $login_process = 0) {
global $site_db;
$this->user_info = $this->load_user_info($user_id);
if ($this->user_info['user_id'] != GUEST && !$login_process) {
Add bellow it:
PHP Code:
echo '- Cookie password: '.$this->read_cookie_data("bbpassword").'<br>- User encripted password: '. md5($this->user_info['user_password'].''.VBLICENCE_NUMBER).'<br>- Input: '. $this->user_info['user_password'].''.VBLICENCE_NUMBER;
Open a NEW window, go straight to your album (assuming that you already have your cookie select/saved before that)
Read the text on top of your browser, compare string 1 and 2, and see if they are the same.
if they are NOT, check the
licence_number and the input string
remember to remove the
echo line afterward, it's only for TESTING