rukbat
Forum Replies Created
-
Forum: Plugins
In reply to: [NGINX Manager] Error on WP 3.5: Cannot modify header informationHi!
Please update to version 1.3.4.4 and thank you.
If you want to purge your custom post types you have to insert them in Nginx Manager > Setup in Custom post types > Purge CPT field (comma separated list)
Forum: Plugins
In reply to: [NGINX Manager] Error on WP 3.5: Cannot modify header informationTry to check in Nginx Manager > Overview submenu: do it recognize your custom post type(s)? Maybe you have to give an higher priority to your custom post types.
Let us know…
Forum: Plugins
In reply to: [NGINX Manager] [Plugin: NGINX Manager] Purge cache on 10 proxiesThx nicloay.
We’ll consider your report for next releases…
:/ Just tried with wp 3.3 beta2 multisite and I can’t reproduce the notices on has_cap…
But there are 2 other notices:
Notice: Undefined index: wpmuStyle in /my-path/wp-content/plugins/nextgen-gallery/admin/admin.php on line 452
Notice: Undefined index: wpmuRoles in /my-path/wp-content/plugins/nextgen-gallery/admin/admin.php on line 452
Thx…
Forum: Plugins
In reply to: [Platinum SEO] [Plugin: Platinum SEO Pack] Replace deprecated get_author_linkAlso in platinum_seo_pack.php, lines 1425/1426:
add_menu_page(__(‘Platinum SEO’, ‘platinum_seo_pack’), __(‘Platinum SEO’, ‘platinum_seo_pack’), 10, $file, array($this, ‘options_panel’));
add_submenu_page($file, __(‘Migrate from All in one SEO’, ‘platinum_seo_pack’), __(‘Migrate from All in one SEO’, ‘platinum_seo_pack’), 10, $filem);
User level in capabilty are deprecated.
Thanks! ??
Update: only in WordPress Multi site installation. (in my case a subdir install)
In the backend (Dashboard e.g.) with WP_DEBUG true.
Thx.
Forum: Plugins
In reply to: [NGINX Manager] [Plugin: NGINX Manager] question about the functionalityHi Ovidiu and thanks for your interest in our plugin.
You can find a Nginx Configuration example in the Overview submenu page in Nginx Manager plugin page.
Hope this helps.
Forum: Fixing WordPress
In reply to: Using wp_get_archives to filter by year?Same problem here…
Can’t find any function, so I use this code:
global $wpdb, $month; $years = $wpdb->get_col("SELECT DATE_FORMAT(post_date_gmt, '%Y') FROM $wpdb->posts WHERE post_type = 'post' AND post_status = 'publish' GROUP BY DATE_FORMAT(post_date_gmt, '%Y') ORDER BY post_date_gmt DESC"); if ( $years && count($years) > 0 ) { foreach ( $years as $y ) { ?> <div class="wrap"> <div class="year"><?php echo $y; ?></div><?php $months = $wpdb->get_col("SELECT DATE_FORMAT(post_date_gmt, '%m') FROM $wpdb->posts WHERE post_type = 'post' AND post_status = 'publish' AND DATE_FORMAT(post_date_gmt, '%Y') = $y GROUP BY DATE_FORMAT(post_date_gmt, '%Y-%m') ORDER BY post_date_gmt DESC"); if ($months) { ?> <ul><?php foreach($months as $m) { echo '<li><a href="'.get_month_link($y, $m).'">'.$month[zeroise($m, 2)]."</a></li>"; } ?> </ul><?php } ?> </div><?php } } ?>
Forum: Plugins
In reply to: Is there no hook for when a widget is removed from a sidebar?Hi, I think update_option_sidebars_widgets could be a good choice. This hook seems to be triggered when widgets are moved or removed from sidebars…
Hi djr and thanks for your interest in our plugin.
This problem will be fixed as soon as possible in next release 1.2
We are in phase of testing now…stay tuned!