PHP Help - Delete cookies and redirect back to referrer


 
Thread Tools Search this Thread
Top Forums Web Development PHP Help - Delete cookies and redirect back to referrer
# 1  
Old 11-19-2009
PHP Help - Delete cookies and redirect back to referrer

I was wondering if any one would be willing to help me with this.

I'd like to create a 503 error page using a PHP script that will do the following:


- delete all cookies that contains 'something' in the host and 'JSESSIONID' as the cookie name. There are either 1 or 2 cookies that each user will have.
- redirect them to the referrer that sent them to this php script in the first place.
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Web Development

Using Javascript sessionStorage versus Cookies

In browsers that support HTML5 we can use sessionStorage in Javascript instead of Cookies to set variables that need to be persistent per session. For example, in this PHP code for the forums, we can do something like the following: $localStorage = '<script>'; $sessionStorage .=... (0 Replies)
Discussion started by: Neo
0 Replies

2. UNIX for Dummies Questions & Answers

Cookies in UNIX

Ho can i access a url rom unix? And where can i get the cookies from unix directory? Vinodh (1 Reply)
Discussion started by: rvinodh3
1 Replies

3. Shell Programming and Scripting

Pass back return code for file delete failure

Hello Experts, This script to delete a file is submitted from an SAP system which has 2 servers. When it happens to run on server 1, the delete is successful. When it runs on server 2, the delete always fails. All user accounts and permissions have been adjusted to match on both servers. Is it... (5 Replies)
Discussion started by: SAPDEVEL
5 Replies

4. Shell Programming and Scripting

PHP Redirect Script

Hello Unix.com, I badly need to get rid of drones that access my website. I'm using a hits php script that logs every ip that visits my index.php. Looks like this: <?php $IP = getenv("REMOTE_ADDR"); $day = date('l jS \of F Y h:i:s A'); $fout = fopen("hits.txt", "a"); fputs($fout,... (0 Replies)
Discussion started by: galford
0 Replies

5. Shell Programming and Scripting

How to delete a string pattern in a file and write back to the same file

I have a control file which looks like this LOAD DATA INFILE '/array/data/data_Finished_T5_col_change/home/oracle/emp.dat' PRESERVE BLANKS INTO TABLE SCOTT.EMP FIELDS TERMINATED BY '|' OPTIONALLY ENCLOSED BY '"' TRAILING NULLCOLS (................. ..................) How can i edit the... (1 Reply)
Discussion started by: mwrg
1 Replies

6. Programming

how to redirect back to stdout

In my program, I am using library provided by other. In the library, the cout/cerr is redirected to a file (the file path is known). After I call some methods in the library, I get one side-effect --> The cout/cerr in my own program is also directed to the file. So how can I to redirect... (5 Replies)
Discussion started by: princelinux
5 Replies

7. UNIX for Dummies Questions & Answers

How to Block/Ban Traffic From Specific Referrer

I've got a problem site that I need to block all referrers, but if possible, I'd really like to ban all ip's at the same time so that they can't figure out a way around it. Any ideas? (4 Replies)
Discussion started by: osoamor
4 Replies

8. Shell Programming and Scripting

PHP Redirect

I need a script named index.php . when i goto that page it redirects to html/index.php can someone please tell me the code required (2 Replies)
Discussion started by: perleo
2 Replies
Login or Register to Ask a Question
Dancer::Cookies(3pm)					User Contributed Perl Documentation				      Dancer::Cookies(3pm)

NAME
Dancer::Cookies - a singleton storage for all cookies SYNOPSIS
use Dancer::Cookies; my $cookies = Dancer::Cookies->cookies; foreach my $name ( keys %{$cookies} ) { my $cookie = $cookies->{$name}; my $value = $cookie->value; print "$name => $value "; } cookie lang => "fr-FR"; #set a cookie and return its value cookie lang => "fr-FR", expires => "2 hours"; cookie "lang" #return a cookie value DESCRIPTION
Dancer::Cookies keeps all the cookies defined by the application and makes them accessible and provides a few helper functions for cookie handling with regards to the stored cookies. METHODS
init This method is called when "->new()" is called. It creates a storage of cookies parsed from the environment using "parse_cookies_from_env" described below. cookies Returns a hash reference of all cookies, all objects of Dancer::Cookie type. The key is the cookie name, the value is the Dancer::Cookie object. cookie "cookie" method is useful to query or set cookies easily. cookie lang => "fr-FR"; # set a cookie and return its value cookie lang => "fr-FR", expires => "2 hours"; # extra cookie info cookie "lang" # return a cookie value parse_cookie_from_env Fetches all the cookies from the environment, parses them and creates a hashref of all cookies. It also returns all the hashref it created. AUTHOR
Alexis Sukrieh LICENSE AND COPYRIGHT
Copyright 2009-2010 Alexis Sukrieh. This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License. See http://dev.perl.org/licenses/ for more information. perl v5.14.2 2012-01-28 Dancer::Cookies(3pm)