Kristian
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] https site doesn't load properlyHello,
I have this problem too. The JS/CSS files are linked with https://….. and because of that, they won’t load. If I purge the cache, it works. At the next day the error appears again. The curio is, that nothing changes if I activate the “Don’t cache SSL sites” option at the Page Cache settings page.
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] Can't Preview Changes or View DraftsI have the same issue too. The reason for the problem is, that the login in cookie is only available for HTTPS if the admin is running with HTTPS and the front page is running with HTTP. I don’t have a solution for that except disabling HTTPS for admin.
Forum: Plugins
In reply to: [Multipage] Hide standard navigation optional?Nice to hear that. Thank you for your work!
Forum: Plugins
In reply to: [Multipage] Additional Button in Post EditorGreat to hear that. Thank you very much!
Forum: Plugins
In reply to: [Advanced Editor Tools] <p>  ;</p> is added between captionsThat would be fantastic. Thank you for you good work!
Forum: Plugins
In reply to: [Ad Blocking Detector] Error "A session had already been started" appearsThank you very much. The error is gone!
Forum: Plugins
In reply to: [Ad Blocking Detector] Error "Use of undefined constant ABD_Widget" appearsGreat! Thank you!
I have the same issue using WP 4.0 multisite . Any solution available?
Forum: Plugins
In reply to: [360 Product Viewer] Add flash support as option to shortcodeThank you for the explanation. I will think about it.
Forum: Plugins
In reply to: [360 Product Viewer] Add flash support as option to shortcodeThank you for your answer. If I understand the help text in your software correctly, the full screen mode with large images is only supported using flash. Currently the full screen button (right button in toolbar) has no function.
Forum: Plugins
In reply to: [Co-Authors Plus] White space is missing in german translationThe whitespace is still missing. How can I send a pull request? Never done that before ?? With SVN?
Forum: Plugins
In reply to: [W3 Total Cache] Last-Modified header set incorrectly (Advanced Page Cache)Hello phoenix13,
I dind’t find a solution. But as I described above: If I set the option “Set expire header”, then the browser will use this time value to decide whether the cache should be renewed.
If you find a solution for this, please post it. Thank you!
Regards
Forum: Plugins
In reply to: [W3 Total Cache] How to remove " ?repeat=w3tc " from query stringMy code above breaks pages with a query string (like the search page). The following code fix this issue:
if (strpos($_SERVER['QUERY_STRING'], 'repeat=w3tc') !== false) { $uri = explode('?', $_SERVER['REQUEST_URI']); $queryString = ''; if (isset($uri[1])) { $queryString = trim(str_replace('repeat=w3tc', '', $uri[1]), '&'); $queryString = (!empty($queryString)) ? '?' . $queryString : ''; } wp_redirect(home_url($uri[0] . $queryString), 301); exit; }
Forum: Plugins
In reply to: [W3 Total Cache] Last-Modified header set incorrectly (Advanced Page Cache)I am not sure. But if I disable this plugin or visit a wordpress page as a logged user, this header value is not set.
I have found a workaround. If I set the option “Set expire header” the Last-modified header has still the wrong value “Thu, 01 Jan 1970 00:00:00 GMT” but the browser clears the cache if the expire time is reached.
Forum: Plugins
In reply to: [W3 Total Cache] How to remove " ?repeat=w3tc " from query stringShould i put it in the theme_setup() function inside functions.php?
Yes, correct.
Do i need to reactivate the theme after doing so?
No, the code is active instantly.