moikirsch
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Query to display attachments where post_parent is NOT nullNo one knows a solution? or do I have to create a custom SQL for this?
Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] Google's mod_pagespeed and W3I tried it for a few minutes with my host (dreamhost) but I started to get some garbage code and decided to deactivate mod_pagespeed for the moment.
It is a low trafic website right now so I rather stick with W3TC for now and wait a little to see the improvements and some comments from people who actually know what their doing.
But if it helps, I would gladly turn it on again for a day and show the results.
Forum: Fixing WordPress
In reply to: Random 404’s on the backendI’m seeing this in more than one blog and from what I can gather in the forums it looks like there are at least 2 o 3 more people having this problem.
Forum: Fixing WordPress
In reply to: WP getting 404 errorsI posted about this a few weeks ago with no luck:
http://wordpress.org/support/topic/random-404s-on-the-backend
What hosting are you using?
Forum: Fixing WordPress
In reply to: Random 404’s on the backendI’m seeing another issue… I don’t know if it is just me or a widespread problem.
From time to time when I login into my backend the navigation marks that there are 4 updates… when I reload the page or go into the updates page, there is nothing to update.
Can this things be related?
Forum: Fixing WordPress
In reply to: Random 404’s on the backendI’ve tried all of the above BUT switching to the default theme.
I can’t switch it right now.
After re-uploading the wp-admin and wp-includes the 404 problems are gone (at least for now).
Any more ideas?
Forum: Developing with WordPress
In reply to: Sidebar Per PageYou could do something similar to this (just the general idea, you’ll have to check the actual code):
<?php if($sidebar_name = get_post_meta($post->ID, 'sidebar', true)){ dynamic_sidebar($sidebar_name); } ?>Then you need to add the following to functions.php:
<?php // Activate the widget based sidebar if(function_exists('register_sidebar')){ register_sidebar(array('name'=>'Default')); foreach(get_custom_sidebars() as $sb){ register_sidebar(array('name'=>$sb[meta_value])); } } function get_custom_sidebars(){ global $wpdb; $query = "SELECT * FROM $wpdb->postmeta WHERE meta_key = 'Sidebar' GROUP BY meta_value"; $sidebars = $wpdb->get_results($query, ARRAY_A); return $sidebars; } ?>Hopefully this helps.
Forum: Fixing WordPress
In reply to: Performance issues with too many static pagesIt wasn’t… I still have the problem.
the problem is back… not sure how it was fixed but now I have over 3500 querys.
Cache helps a lot but it is not a final solution.
Forum: Fixing WordPress
In reply to: Performance issues with too many static pagesIt looks like it was fixed with the latest version (2.8.2).
Can someone else confirm it?
It looks like the latest version of wordpress fixed this issue or something else did… Now it works fine.
Forum: Fixing WordPress
In reply to: Performance issues with too many static pagesI have a similar issue… but in my case I only have 60 or 70 pages.
Just to load the home page it takes 2947 queries = 4.465 seconds.
The only solution that appears to work is to use Super Cache but it sucks to know that WordPress can’t scale on this area and as Otto’s comments it looks like there is no plan for the Core Dev Team to fix it in the short term.
Forum: Plugins
In reply to: Events Category stripping out Media Library buttons in WP 2.7.1The plugin needs to be updated… it is not compatible with WP 2.7.
I’m also looking to use it but right now it breaks the whole post/edit form.
Forum: Plugins
In reply to: Allow to view posts in the futureI decided to use the following plugin:
http://wordpress.org/extend/plugins/events-category/Not the best solution for me, but in this case “good enough”.
Forum: Plugins
In reply to: Allow to view posts in the futureI can get the posts without a problem… the issue is when you click on the permalink.
Single.php returns a 404.
The reason to display this is to be able to post about future events, classes, etc.