oreio
Forum Replies Created
-
Nikos, I guess in your case, WordPress installation (site_url) and the homepage (home_url), both as set to /blog, so changing that line in wp-cache-phase1.php won’t make a difference.
My fix does not work for you and your fix is not necessary for me. Let’s hope in the next version of the plugin Donncha will manage to fix both cases 🙂
Hello, I have the exact same problem described by the OP.
WordPress 3.3.1, WP Super Cache 1.0
I did not test the devel version, but here in 1.0 my dirty fix here was changing from site_url to home_url in wp-cache-phase1.php.
From:
$uri = str_replace( site_url(), '', get_permalink( $post_id ) );To:
$uri = str_replace( home_url(), '', get_permalink( $post_id ) );I don’t know if that will break other functionality, but now the new comments wipe the current cache for the page.
I guess the problem is because we’re not using the wordpress files in the root of the domain. The OP installed WordPress in the ‘wordpress’ folder, and myself inside the ‘wp’ folder. Note that these folders do not appear in the site URL.
From my wp-config.php file:
define('WP_HOME', 'http://aurelio.net'); // home, index define('WP_SITEURL', 'http://aurelio.net/wp'); // WP dirAs far as I can tell, the “new comment updates the post cache” is the only WP Super Cache feature that is not working in my non-standard WordPress install, everything else works fine.
Similar problem here. Not a single long line for each PRE, but all *blank* lines are gone. If I have a PRE with this inside:
Line 1 Line 2 Line 3With this plugin activated, it becomes:
Line 1 Line 2 Line 3No blank line before Line 3. I’ve tried to just disable de HTML minification, but the problem persisted. Only disabling the plugin my PREs returned to normal behavior.
Forum: Fixing WordPress
In reply to: "You may not access this page without a valid key"Same problem here. I’ve found a workaround.
In the notification email, after the message “To manage your subscriptions or to block all notifications from this site, click the link below:” there’s a URL. Just change “%40” by “@” (without quotes) in the URL and it will work.
Forum: Themes and Templates
In reply to: Twenty-Ten Entry-Meta QuestionI’m new to this forum, I can’t see how to mark it as resolved. Maybe only the original poster can do it?
Forum: Themes and Templates
In reply to: Twenty-Ten Entry-Meta QuestionI’ve found the answer to this question in this topic: http://ww.wp.xz.cn/support/topic/how-to-remove-posted-date-and-by
You’ll have to edit functions.php.