Ask a Question related to PHP Development, Design and Development.
-
Jarkko Kähkönen #1
Page has expired -problem
Hi!
I have Windows XP&IE6.0.2... (SP1).
I'm coding one project with PHP.
I get "Warning: Page has Expired" when I try to get back to the "POSTed
page" (page whither moved from FORM-page).
Better explanation:
- Pages are:
* Page A: Front-page
* Page B: Page where is www-FORM
#1.) From Page "A" I move to the page "B" by clicking link on page "A" and I
fill the form's fields
#2.) Then I click SUBMIT-button and I moved back to the page "A"
#3.) I move to the page "B" by clicking link on page "A"
#4.) I click "BACK"-button from browser
#5.) I got "Warning: Page has Expired"
I want that when I click BACK, I will be moved to the page "A" straightly
without warning
(of course then post-data can't get re-sent)
Got any idea how in PHP I can prevent this warning?
Thanks in advance!
Best regards,
Jarkko Kähkönen
Jarkko Kähkönen Guest
-
Warning: Page has Expired
Hi, I get the following message when the back-button is clicked "Warning: Page has Expired". This message only appeared after I used the following... -
Page Has Expired Message in between the php Page When I click Back in Explorer Menu
Could anyone please help me on this?? I have a php script page, which is basically quiz. Visitors (after login in with their email address) are... -
Page has Expired, BACK-button -problem
Hi! I have Windows XP&IE6.0.2... (SP1). I'm coding one project with PHP. I get "Warning: Page has Expired" when I try to get back to the "POSTed... -
Prevent 'Page has expired' when a client hits back to return to a search page
I have a search page that I want to enable private caching so that when a user hits the back button they dont get the page has expired error. I... -
Warning Page Has Expired, I need to turn it OFF for a simple search page
You can't turn it off. If you understand the reason for it, then you know that the Back button or Refresh button of a browser makes a new request... -
Matty #2
Re: Page has expired -problem
Jarkko Kähkönen wrote:
<snip>> Hi!
> I have Windows XP&IE6.0.2... (SP1).
>
> I'm coding one project with PHP.
> I get "Warning: Page has Expired" when I try to get back to the "POSTed
> page" (page whither moved from FORM-page).
>Stop outputting "This page has already expired" headers in the first page.>
> I want that when I click BACK, I will be moved to the page "A" straightly
> without warning
> (of course then post-data can't get re-sent)
>
> Got any idea how in PHP I can prevent this warning?
>
--
Matt Mitchell - AskMeNoQuestions
Dynamic Website Development and Marketing
Matty Guest
-
Ivo #3
Re: Page has expired -problem
"Jarkko Kähkönen" <jarkko@kahkonen.com> wrote in message
news:blegp9$crd$1@mordred.cc.jyu.fi...I> Hi!
> I have Windows XP&IE6.0.2... (SP1).
>
> I'm coding one project with PHP.
> I get "Warning: Page has Expired" when I try to get back to the "POSTed
> page" (page whither moved from FORM-page).
>
> Better explanation:
> - Pages are:
> * Page A: Front-page
> * Page B: Page where is www-FORM
>
> #1.) From Page "A" I move to the page "B" by clicking link on page "A" andThis is behaviour by design. At other times at other sites you 'll be> fill the form's fields
> #2.) Then I click SUBMIT-button and I moved back to the page "A"
> #3.) I move to the page "B" by clicking link on page "A"
> #4.) I click "BACK"-button from browser
> #5.) I got "Warning: Page has Expired"
>
>
> I want that when I click BACK, I will be moved to the page "A" straightly
> without warning
> (of course then post-data can't get re-sent)
>
> Got any idea how in PHP I can prevent this warning?
>
> Thanks in advance!
>
> Best regards,
> Jarkko Kähkönen
thankful for it. Especially when combined with get variables, websites may
still re-process your form when the page is reloaded.
The workaround is to skip the resulting page in the history build-up of the
browser. Post your data to a page which outputs some http_equiv redirect or
location.replace to a page which will allow returns.
Ivo
Ivo Guest



Reply With Quote

