forum.coppermine-gallery.net

Support => cpg1.5.x Support => cpg1.5 miscellaneous => Topic started by: guygar on April 06, 2011, 07:24:13 pm

Title: Login Logout Redirect Screen
Post by: guygar on April 06, 2011, 07:24:13 pm
site: coppermine.guygar.com (http://coppermine.guygar.com)

i have modified my coppermine so it loads the 'last additions' page instead of the index.php

the issue is when i login or logout the process redirects to index.php

i am thinking i have to change the redirect URL in the login and louout.php files.

Where can i find info regarding this type of modifications?

Thank you.
Title: Re: Login Logout Redirect Screen
Post by: guygar on April 06, 2011, 07:39:49 pm
i was also wondering if this issue can be handled using .htaccess redirect? i.e. everytime index.php is called it redirects to 'last additions' page?

thanks.
Title: Re: Login Logout Redirect Screen
Post by: guygar on April 06, 2011, 07:59:23 pm
i found this reading docs:

------------------
How can I send a user directly to his private album once he logs in?
edit
login.php
and search for
pageheader($lang_login_php['login'],"<META http-equiv=\"refresh\" content=\"3;url=$referer\">");

and add before it
$referer = 'index.php?cat='.(FIRST_USER_CAT+$USER_DATA['user_id']);

------------------

but i could not find: pageheader($lang_login_php['login'],"<META http-equiv=\"refresh\" content=\"3;url=$referer\">");

in the file.

please advise.
Title: Re: Login Logout Redirect Screen
Post by: Αndré on April 07, 2011, 10:12:29 am
i was also wondering if this issue can be handled using .htaccess redirect? i.e. everytime index.php is called it redirects to 'last additions' page?
Just add a new rewrite rule like
Code: [Select]
RewriteEngine on
RewriteBase /
RewriteRule ^index.php$ thumbnails.php?album=lastup [NC]


i found this reading docs:
Where exactly have you found that? Please post a link.
Title: Re: Login Logout Redirect Screen
Post by: guygar on April 07, 2011, 12:32:23 pm
hi andre,

i found the mentioned info here:

http://coppermine.guygar.com/docs/en/faq.htm#jumpToPrivateAlbum (http://coppermine.guygar.com/docs/en/faq.htm#jumpToPrivateAlbum)
Title: Re: Login Logout Redirect Screen
Post by: Αndré on July 28, 2011, 10:21:52 am
Adjusted that part in svn revision 8222.