Session based pages

From ClickTale Wiki
(Redirected from Session)
Jump to: navigation, search

Some password protection schemes(eg. Logins) are based on session state. Session state is the data your webserver keeps on each user. This data is kept internally(private) or in cookies and is not accessible to ClickTale during the standard caching phase of the recording. As a result you will see a different content during playback than expected(the login screen) or you might see a warning messages saying that caching has failed(404 or 302 HTTP errors). An example of such a site would be an e-commerce site where the cart page changes as a result of what the visitor decided to buy, another example would be a Login to a "Members Only" section of the site where the authentication details of the visitor are stored as a session variable/cookie.

If you are using some other webserver/programming language combination you are welcome to port the samples and post them in the forum or contact support.

Another option is to use our API to pass various additional data(including static versions of the pages) to our caching process via the ClickTaleFetchFrom variable.

Finally, you can use the ClickTaleUploadPage method from the API to record the content directly from the client side. This option will put a small additional stress on the client side and is therefore less favorable if UX is a primary concern.

Personal tools