*/
private $responseHeaders = array();
+ /**
+ * Cookies we shall sent out
+ */
+ private $cookies = array();
+
/**
* Body of the response
*/
// General header for no caching
$this->addHeader('Expired', $now); // rfc2616 - Section 14.21
$this->addHeader('Last-Modified', $now);
- $this->addHeader('Cache-Control:', 'no-store, no-cache, must-revalidate, pre-check=0, post-check=0, max-age=0'); // HTTP/1.1
- $this->addHeader('Pragma:', 'no-cache'); // HTTP/1.0
+ $this->addHeader('Cache-Control', 'no-store, no-cache, must-revalidate, pre-check=0, post-check=0, max-age=0'); // HTTP/1.1
+ $this->addHeader('Pragma', 'no-cache'); // HTTP/1.0
// Define the charset to be used
//$this->addHeader('Content-Type:', sprintf("text/html; charset=%s", $this->getConfigInstance()->readConfig('header_charset')));
foreach ($this->responseHeaders as $name=>$value) {
header("{$name}: {$value}");
- }
+ } // END - foreach
+
+ // Send cookies out?
+ if (count($this->cookies) > 0) {
+ // Send all cookies
+ $cookieString = implode(" ", $this->cookies);
+ header("Set-Cookie: {$cookieString}");
+
+ // Remove them all
+ $this->cookies = array();
+ } // END - if
}
// Are there some error messages?
// @TODO Encryption of cookie data not yet supported
} // END - if
- // Set the cookie
- //echo $cookieName."=".$cookieValue.
- // ", expire=".(time()+$this->getConfigInstance()->readConfig('cookie_expire')).
- // ", path=".$this->getConfigInstance()->readConfig('cookie_path').
- // ", domain=".$this->getConfigInstance()->readConfig('cookie_domain').
- // ", ssl=".$this->getConfigInstance()->readConfig('cookie_ssl');
- setcookie(
- $cookieName,
- $cookieValue,
- (time() + $this->getConfigInstance()->readConfig('cookie_expire')),
- $this->getConfigInstance()->readConfig('cookie_path'),
- $this->getConfigInstance()->readConfig('cookie_domain'),
- $this->getConfigInstance()->readConfig('cookie_ssl')
- );
+ // For slow browsers set the cookie array element first
+ $_COOKIE[$cookieName] = $cookieValue;
+
+ // Get a config entries
+ $expires = (time() + $this->getConfigInstance()->readConfig('cookie_expire'));
+ $path = $this->getConfigInstance()->readConfig('cookie_path');
+ $domain = $this->getConfigInstance()->readConfig('cookie_domain');
+
+ setcookie($cookieName, $cookieValue, $expires);
+ // TODO Why are these parameters conflicting?
+ //, $path, $domain, (isset($_SERVER['HTTPS']))
+ return;
+ // TODO This will send only one cookie out, the first one.
+
+ // Now construct the full header
+ $cookieString = $cookieName . "=" . $cookieValue . "; ";
+ $cookieString .= "expires=" . date("D, d-F-Y H:i:s", $expires) . " GMT";
+ // TODO Why are these parameters conflicting?
+ // $cookieString .= "; path=".$path."; domain=".$domain;
+
+ // Set the cookie as a header
+ $this->cookies[$cookieName] = $cookieString;
}
/**
$url = $this->getConfigInstance()->readConfig('base_url') . "/" . $url;
} // END - if
- // Clean response headers
- $this->resetResponseHeaders();
-
// Add redirect header
$this->addHeader("Location", $url);