Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
1answer
7k views

How to expire a cookie in 30 minutes using jQuery?

How to Expire a Cookie in 30 min ? I am using a jquery cookie. I am able to do something like this. $.cookie("example", "foo", { expires: 1 }); This is for 1 day. But how can we set expiry time to ...
5
votes
3answers
2k views

ASP.Net C# expire page

How can I set an ASP.Net web page to expire so that if the user clicks the submit button, he/she will get a page expired error if the browser's back button is pushed to try to go back and press submit ...
4
votes
1answer
676 views

rails caching: expire_action in another namespace

My application is using a namespace for administrative purposes. I recently tried to start using action caching however I ran into some problems trying to expire the cache using expire_action. ...
4
votes
2answers
149 views

Multiple expire options for one cookie? (javascript)

I was wondering if there is a way to set multiple expire options for one cookie. For example, I want a cookie to expire when the user closes their browser and in 30 minutes. Is this possible? ...
3
votes
3answers
568 views

How can I mark an RSS item “expired”?

I'm working on a (web page / RSS feed / form in a winapp) to show current system status and recent updates. I'd like to know when an open issue is resolved, so that it can be drawn with strike ...
2
votes
1answer
458 views

Redirect Silverlight To Login Page On Session Timeout

I have a silverlight app that uses a simple Login.aspx page. I have all the basic ASP.NET config and it works great for page requests when sessions expire or are missing. But the silverlight service ...
2
votes
2answers
1k views

how do I add an expiration date to an img tag?

I'm using the Page Speed Firebug extension to help improve page performance. I have an image-heavy page, and one of the suggestions it made is this: Leverage browser caching The following ...
2
votes
2answers
485 views

how to compare the two date

I have a mysql database with a php front end. In my records I have an posted date and an expire date directle access from database. What I need to do is check and see if any records expire date ...
1
vote
1answer
35 views

How to limit time allowed for items to stay in a customers' cart Magento

I'd like to be able to set a time span that a customers' cart would expire, so once an item is added to their cart, they have say 15 minutes to checkout before all items are removed from cart and ...
1
vote
1answer
16 views

How to configure the expire date of orbeon resources

We have Orbeon 3.8 PE According to the documentation, "At the moment, the resources served by the PFC (that is all the resources except the XForms engine's CSS and JavaScript resources) do not ...
1
vote
1answer
17 views

default time for an image to expire

I pushed some changes to one of our images to web server, but I found it's not updated on IE and firefox web browsers due to browser caching, since I saw the browsers didn't even request for image ...
1
vote
1answer
39 views

Expiring a cookie when sending a redirect response not working

I'm trying to invalidate/expire an insecure cookie from a securely accessed servlet and send a redirect back to the client. However, when the redirect is followed, the request still contains the ...
1
vote
1answer
100 views

How can I make my beta expire?

I'm creating an android application I wish to release commercially. Before doing so I would like to release a beta. What methods can I use to cause the beta to expire/become unusable after 12 weeks?
1
vote
1answer
35 views

PHP: both sessions and mysql_pconnect() keep starting new sessions/processes

Just want to apologise in advance for writing so much text. Here is the problem: I use a persistent connection to connect to the database with a wait_timeout of 60 seconds and I store session data in ...
1
vote
2answers
50 views

Header Cache Expire question about dynamic site and ad server clicks?

I did some research on speeding up your php mysql site. We update new information on our site every 12 to 24 hours. I found that Header Expire Cache Control in the browser helps speed up the site. ...
1
vote
2answers
82 views

WordPress / PHP - Adding a Class to a Post when a date passes

In WordPress, I have added a custom field on my posts page called "post-expiry" in which I am enterting an expiry date formatted like this: "2011-04-28". Each post can have a different expiry date ...
1
vote
1answer
398 views

Can Rails sweepers work across different controllers?

I have action caching working on my Sites index, and set up a SiteSweeper that works fine: # app/controllers/admin/sites_controller.rb class Admin::SitesController < Admin::BaseController ...
1
vote
1answer
235 views

Postback when session Expires in Ajax call

On one of my pages I have a div that uses ajax to load content asyncrohnously. When a session expires the user is supposed to be redirected back to the loggin screen. However, when the session expires ...
1
vote
1answer
178 views

Expire models in Rails

I'm creating a simple paste-bin in Ruby on Rails, which will have an expire-feature. With this, people can select a date when the paste will be deleted automatically. How can I implement this? I was ...
1
vote
3answers
644 views

Google Apps Engine: Memcache/JCache only works during the expire time

I am using jsr107 JCache in Google Apps Engine to save website data. My code looks like: public static String read(String link, boolean UTF8) throws Exception { URL url = new URL(link); ...
0
votes
1answer
30 views

How can i set email_token_expiry time for 24 hours?

email_token_expiry is a datetime field in mysql table. views.py: if request.method == 'POST': obj = UsersModelForm(request.POST) obj.email_token_expiry = current_datetime + 24 hours ...
0
votes
2answers
84 views

How to keep php sessions alive for longer

Hi I've been reading up on this and currently we have this as a solution: ini_set("session.gc_maxlifetime", "28800"); ini_set('session.gc_probability',1); ini_set('session.gc_divisor',1); ...
0
votes
0answers
51 views

How Do You Expire A Memcached Entry On Heroku

I am using action caching on my Rails 3 app on Heroku with the :expires_in option. I've tried calling expire_action, directly in the controller upon update, and within a sweeper. Nothing seems to ...
0
votes
0answers
10 views

Is there a way to know when the webpage wil expire?

I am just beginning some network programming. And I need to check if my apache server is set properly. Is there a way to know when a webpage will expire? Specifically, just using a web browser like ...
0
votes
1answer
24 views

ActiveResource models + Sweepers

I've just started working with ActiveResource, and decided to cache a few bits of the model so I'm not hitting the api incessantly. Ok, fine. I've looked into expiring caches, and decided to ...
0
votes
1answer
135 views

iOS provisioning profile expired

We want to test our iOS app for 10 years later, i.e, 2021 etc. But when change time to 2021 from setting, and can not open the app again because the provisioning profile was expired. How can I make ...
0
votes
2answers
46 views

Working with cookies between jQuery and PHP

I save a cookie in PHP: setcookie('name['.time().']','Andres',time()+86400,'/'); As you can see, it is not a regular cookie value, because it is an array. That helps me to sort() or ksort() the ...
0
votes
1answer
226 views

Facebook Access Token Expiring with offline access

I have an application to manage a users Facebook notifications, the app requests offline_access as well as manage notifications permissions. My logs have been filling up with Facebook errors, I ...
0
votes
1answer
43 views

How to generate automatic url which is given permission for 3 times in PHP?

I would like to generate a URL which will have a unique code tail at the and only will be used 3 times. After accessing 3 times from the link. the url will expire. How can I do this? Basically I think ...
0
votes
3answers
98 views

Asp.net session expire very soon

I get this message too often and think that it is not usual, how i can fix this issue? "A worker process with process id of '8052' serving application pool 'mywebsite.com' has requested a recycle ...
0
votes
0answers
366 views

JSF browser back button expire page

I have the following page flow. User logins into web site from 'loginpage.xhtml', upon successful validation user specific data is added to the session to track/persist user activity.User is then ...
0
votes
2answers
116 views

SOLVED - Can browser display images (or some other objects) from its cache without receive 304 status code?

i'm trying to understanding if is it possibile to avoid request for some embedded objects, loading them directly from cache without asking to web server if the object is valid or not (i don't wont web ...
0
votes
0answers
156 views

Setting expiry dates for images used by timthumb

I'm trying to improve on my site's page load. I'm using Y! Slow and page Speed from Google. The biggest point factored in by both is the expiry dates on my site. Almost 90% of this is caused by ...
0
votes
4answers
135 views

Expire unix or time() code after x hours

I am trying to create a forgot password feature which will expire the link created after x hours. So i am storing time() data in database value when a user requests a password reset. So how can i ...
0
votes
2answers
488 views

Setting up Expire Headers with PHP

Hey all, could anyone help me with setting up Expire Headers using PHP only, .htaccess is no good, because my host won't enable mod_expires on apache. so basically i'm looking for a way to do: ...
0
votes
3answers
170 views

How to auto remove an expired record from a database?

We are building a large stock and forex trading platform using a relational database. At any point during the day there will be thousands, if not millions, of records in our Orders table. Some orders, ...
0
votes
1answer
158 views

JCS notify on expire/remove

we use JCS very simply. Not distributed or anything, simply: JCS jcs = JCS.getInstance("region-name"); I'm trying to register some kind of listener that can be used to receive a notification/event ...
0
votes
1answer
814 views

apache ExpiresDefault - just doesn't work

we all know that setting expire date for static files is very useful and the way i found to do so is through the ExpiresDefault property in a .htaccess file but it just doesn't work .. i am using ...
0
votes
1answer
127 views

how to add expire headers for dropbox files?

how can i add expire headers for my files (etc: images) in dropbox?
0
votes
2answers
204 views

Setting content expiration on all pages to avoid back button in ASP Classic

Is there a way to set pages to expire in ASP Classic so that the user can't hit back and re-do anything? Is this a good practice?
0
votes
1answer
78 views

Can a Flash SharedObejct expire per session?

I'm trying to display certain content per session, but the site has the same Flash embedded in the different sections of the site, so I can't set it on the site's Model or a Global Variable. I also ...
0
votes
1answer
732 views

'Session expires' error in oauth for twitter

I am using abraham williams library to update twitter status using oauth. But I am constantly getting 'session expired' error. How can I get around this. This is my source. connect.php <?php ...
0
votes
1answer
851 views

How can I override the DevExpress GridView delete

I've got a table (myTable) that I want to remove rows from but not delete them. I'm expiring them by using an myTable.ActiveFlag. So when I "delete" a row from myTable, I'd like to run UPDATE myTable ...
0
votes
1answer
114 views

Admin terminating a user session

In our project, we have a situation where the administrator needs to 'force log off' a particular user under certain conditions. In other words, the admin user needs to have the ability to kill any ...
0
votes
2answers
220 views

How can I 'expire' a change password unique code in a database record?

I want to implement a forgot password function in my java web application. I want to implement it like this: User enters their account email address and presses 'forgot password' button App ...
0
votes
1answer
608 views

memcached never expired in rails?

It's very strange that the session will never expire if i use memcached store even i set config.action_controller.session :session_expires => 1.seconds.from_now And I use extended_fragment_cache to ...
0
votes
2answers
426 views

run query after session expire

i need a php code that will run a query after a specific session is going to expire, if(!isset($_SESSION['test'])) query; something like that but does work with session expire, Thanks
0
votes
2answers
92 views

Implementation for query caching

I need to implement cache for SQL queries. Say we have "SELECT id,aa,bb FROM table1 WHERE aa>1 and bb=12;" -- we want it to be cached. Also, it may be "SELECT id,aa,bb FROM table1 WHERE aa>25 and ...
0
votes
2answers
1k views

expiry date using utc timestamp, mysql and php?

How do you add time or days to a current utc_timestamp? I am using; new CDbExpression('UTC_TIMESTAMP()') for both 'created' and 'updated' fields in my mysql table but would like to add an 'expiry' ...
-2
votes
1answer
35 views

Using PHP, how can I make a cookie expire after the browser is closed?

Using PHP, how can I make a cookie expire after the browser is closed?

1 2