Can Symfony simply reload a page request?
Posted
by Rob Wilkerson
on Stack Overflow
See other posts from Stack Overflow
or by Rob Wilkerson
Published on 2010-06-14T19:37:17Z
Indexed on
2010/06/14
19:42 UTC
Read the original article
Hit count: 288
I have an app that receives a request from another app. It detects a value on the query string, checks that value against a cached value and, if they don't match, it needs to clear its cache and reload the page (establishing a new cache). Unfortunately, I can't find a way to tell Symfony to redirect to the current page in exactly the same format (protocol, URI path, query string, etc.). What am I missing? This is all happening in a filter on isFirstCall()
.
Thanks.
© Stack Overflow or respective owner