creremyahoo
Forum Replies Created
-
Forum: Plugins
In reply to: [Memcached Object Cache] domain redirect after i copy object-cache.phpHi,
The solution was to add this line in wp-config.phpdefine( ‘WP_CACHE_KEY_SALT’, $_SERVER[‘SERVER_NAME’] );
Thanks
Hi,
This is from their official doc
textarea_html – Text area with default WordPress WYSIWYG Editor. Important: only one html textarea is permitted per shortcode and it should have “content” as a param_nameSo try rename it from ‘body_text’ to “content”
Hi,
I’m sorry but is not an url – is a html input field that has a different value on each page load.<input type=”hidden” id=”security-login-topbar” name=”security-login-topbar” value=”<?php echo estate_create_onetime_nonce( ‘login_ajax_nonce_topbar’ );?>”>
That code is composed from a nounce + unixtimestamp and is used in validating a request. I don’t want to have it cached since it has a different value every time.
How can i avoid that ?Hello,
this is the code
<input type=”hidden” id=”security-login-topbar” name=”security-login-topbar” value=”<?php echo estate_create_onetime_nonce( ‘login_ajax_nonce_topbar’ );?>”>it contains a nonce based on unixtimestamp .
How i can avoid caching the value for this input
I have tried setting up the value via inline javascript but it still gets cached.
Thanks
Forum: Plugins
In reply to: [WP Fastest Cache] cookies cacheHi,
“When I’m logged in with admin the code works and values are changes for testcookie and other custom Cookies.” – so the answer is yes- the code works. The only problem appears only when a use is not logged in.If you need i can set up access to the working domain.
Forum: Plugins
In reply to: [WP Fastest Cache] cookies cacheHi,
Did you have time to look over this ticket ?
ThanksForum: Plugins
In reply to: [WP Fastest Cache] cookies cacheJust saw the 8th june notice – will wait until then ??
Forum: Plugins
In reply to: [WP Fastest Cache] cookies cacheI know you must be busy but i just wanna check if you noticed my ticket ?
ThanksForum: Plugins
In reply to: [WP Fastest Cache] Exclude cookies from cache for non logged usershi again,
I;m trying to use a “testcookie” and cache on but with no lucki have added
setcookie(“testcookie”, rand(),time()+3600,”/”); or
$_COOKIE[‘testcookie’]=rand();
in the ..add_action(‘after_setup_theme’, ‘wp_estate_init’);
if( !function_exists(‘wp_estate_init’) ):
function wp_estate_init() {
…….i also set my custom cookie in a function called via ajax.
and i do a
print_R($_COOKIE); in footer.phpin inc/admin.php i have added
if(isset($_POST[“wpFastestCacheLoggedInUser”]) && $_POST[“wpFastestCacheLoggedInUser”] == “on”){
$loggedInUser = “RewriteCond %{HTTP:Cookie} !^.*(comment_author_|wordpress_logged_in|wp-postpass_|wp_woocommerce_session|my_custom_curr|my_custom_curr_pos|my_custom_curr_symbol|my_custom_curr_coef|my_custom_curr_cur_post|testcookie).*$”.”\n”;
}When I’m logged in with admin the code works and values are changes for testcookie and other custom Cookies.
When I’m not logged in nothing changes for testcookie (or any other cookies set by me.)
The set cookies code works (otherwise it will not change value when i’m not looged in).
i don;t have any other cache plugin.
Can you help solve this ?
ThanksForum: Plugins
In reply to: [WP Fastest Cache] Exclude cookies from cacheho,
No i’m not logged in. I also print_r ( $_COOKIE ) and in Chrome works as expected but not on FF. I don’t use the FF as main browser so i don;t have installed any extensions or plugins.any ideas ?
Thanks for the supportForum: Plugins
In reply to: [WP Fastest Cache] Exclude cookies from cacheHi,
Thanks for your replay. The fix is working on chrome but not on firefox. Can you advise please?