niska
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: WP Super Cache] Manually delete cache for feed(s)I’ve actually solved the feed-issue now. But I still wonder why feeds are stored differently than normal posts/pages. I hope you have the time to answer 🙂
Forum: Plugins
In reply to: [Plugin: WP Super Cache] Too many files causes problemsDid you get any time to have a look at this?
Forum: Plugins
In reply to: [Plugin: WP Super Cache] Manually delete cache for feed(s)I also wonder: If a user enables supercache, why not use the supercache-directory for feeds?
Forum: Plugins
In reply to: [Plugin: WP Super Cache] Too many files causes problemsThis checks to see if the URL has more than 4 characters. If so it rewrites using the subdirectory:
RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{HTTP_HOST}/$1/$2/$3/$4/index.html.gz -f
RewriteRule ^([a-zA-Z0-9])([a-zA-Z0-9])([a-zA-Z0-9])(.+) /wp-content/cache/supercache/%{HTTP_HOST}/$1/$2/$3/$4/index.html.gz [L]RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{HTTP_HOST}/$1/$2/$3/$4/index.html -f
RewriteRule ^([a-zA-Z0-9])([a-zA-Z0-9])([a-zA-Z0-9])(.+) /wp-content/cache/supercache/%{HTTP_HOST}/$1/$2/$3/$4/index.html [L]Since there might be URLs that are less than 4 characters long, you still need to keep the old rewrite-rules.
Forum: Plugins
In reply to: [Plugin: WP Super Cache] Manually delete cache for feed(s)If I write a plugin that can do this. Can I use a function in wp super cache to do this? This way I don’t need to reinvent the weel, and it will also work if you make changes in your plugin in the future.
Forum: Plugins
In reply to: [Plugin: Blog Icons] Feed Icon fails validation with empty width/height+1
kennethreitz: there is an error in your plugin. line 12 should be
add_action('admin_menu', 'asyncga_menu');From the changelog: “@name support”
What does this mean? Will it work if using WPMU?
Thanks Daiv. Which template file should I use? I want the default look.
Forum: Plugins
In reply to: Plugin/functions code to keep thumbnail quality?+1
Forum: Plugins
In reply to: [P2 TIP 002] add login/logout to frontpageIs there a login/logout/forgot password/register * AJAX * wordpress plugin compatible with P2?
Forum: Requests and Feedback
In reply to: [Plugin: Author avatars] Please add feedback hereWarning: This plugin breaks the functionality in Use google libraries.
More info here
Forum: Themes and Templates
In reply to: Posting on Author Page in P2I’m thinking of changing this line in functions.php:
$page_options['is_first_front_page'] = (int)(is_front_page() && !is_paged() );to
$page_options['is_first_front_page'] = (int)(is_author($user_ID) && !is_paged() );Do you think that it will work? Or do you have another solution?
I’m hoping a future version will let us decide if we want to post on index.php or author.php (or maby both).
Forum: Themes and Templates
In reply to: Posting on Author Page in P2I have the same problem. More info.
Forum: Themes and Templates
In reply to: Problems With P2Another (easy to fix) problem with P2 🙂
Could you please filter out shorttags from the post slug?