coppermine-gallery.com/forum

Support => cpg1.3.x Support => Older/other versions => cpg1.3 Permissions & Access Rights => Topic started by: sowalsky on June 03, 2005, 02:33:11 PM

Title: Set admin cookie
Post by: sowalsky on June 03, 2005, 02:33:11 PM
Hi,
I want to somehow trigger the setting of a cookie with my admin username and password when I access a certain page (outside of coppermine) so that when I view cpg, it gives me admin access.  This is so I don't have to log in manually; I can use my private portal page to set the cookie.

How do I do this?  I can't find where $config[cookie_name] or $config[cookie_path] are defined, so I can't place the proper cookie.  Help, please!?
Title: Re: Set admin cookie
Post by: Nibbler on June 03, 2005, 08:03:47 PM
Here's the setcookie commands from login.php

setcookie($CONFIG['cookie_name'] . '_uid', $USER_DATA['user_id'], time() + $cookie_life_time, $CONFIG['cookie_path']);
        setcookie($CONFIG['cookie_name'] . '_pass', md5($HTTP_POST_VARS['password']), time() + $cookie_life_time, $CONFIG['cookie_path']);


Hardcode in your details and it should work. Cookie name and path are those set in config, loaded into the $CONFIG array from your database in init.inc.php
Title: Re: Set admin cookie
Post by: sowalsky on June 04, 2005, 03:20:08 PM
Okay, so found cookie_name -- it's cpg133 and cookie_path is /
So would my syntax be:

setcookie('cpg133_uid', '1', time() + 3600, '/');
setcookie('cpg133_pass', md5('mypass'), time() + 3600, '/');

I'm trying this and the cookie isn't taking.  It doesn't even show up in the FireFox cookie list... ('1' is the value of the uid cookie for admin placed when i logged in normally.
thanks for your help.
Title: Re: Set admin cookie
Post by: sowalsky on June 05, 2005, 01:19:23 AM
Nevermind -- I figured out what was wrong. I was putting it after my <HTML> tag.  Oops.