26 Apr
2007
26 Apr
'07
4:20 p.m.
Owen Leonard a écrit :
Does anyone know how to create a way for Koha to refresh the home search screen for patrons after a certain amount of time?
Add this HTML right underneath one of the other <meta> tags:
<meta http-equiv="Refresh" content="240;URL=http://your-site.example.com/cgi-bin/koha/opac-main.pl" />
...changing the URL value of course to your own site's. That would return the page to the opac home page after 4 minutes (240 seconds).
-- Owen
You are right but uncomplete. IMHO, you should first disconnect current user if connected. Thus use a redirect : http://example.com/cgi-bin/koha/opac-main.pl?logout.x=1 instead of opac-main.pl Yours -- HDL