James
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Error displaying “somepage.php?page=XXXX”Tried that and still no joy…
In IE7, I get:
The webpage cannot be found – HTTP 404This is on any of the plugin settings…
Forum: Fixing WordPress
In reply to: Error displaying “somepage.php?page=XXXX”I have tried removing all the plugins via ftp, but still when I add any that use the admin.php?page=, I get the error. I don’t believe its any of the plugins causing the errors now, but it may have been a plugin that triggered the error in the first place.
Forum: Fixing WordPress
In reply to: Error displaying “somepage.php?page=XXXX”Please… I am really stuck now, I can’t change any plug-in options due to this error and this means a vital part of my website (podcasts) are no longer working.
Any help is appreciated.
Forum: Fixing WordPress
In reply to: Error displaying “somepage.php?page=XXXX”Can anybody help with this, its a major problem…
Forum: Fixing WordPress
In reply to: Error displaying “somepage.php?page=XXXX”I have the same error. I did some automatic plug-in installs that needed updating, however since the updates I receive exactly the same error leaving me in a right mess. I can’t alter any of the plug-in settings now ??
Any help would be greatly appreciated.
Forum: Plugins
In reply to: Comments in Moderation – Front of blog?Thanks it works great now, very useful!
In case anyone else is wondering, this is the code I used in the sidebar of the theme:
<?php if ( current_user_can(‘edit_users’) ) { ?><?php
$numcomments = $wpdb->get_var(“SELECT COUNT(*) FROM $wpdb->comments WHERE comment_approved = ‘0’”);
echo ‘<small>(‘,$numcomments,’)</small>’;
?><?php } ?>I actually put this in a <h2> tag next to the title text, so I could see clearly at the top how many comments were in moderation very quickly.
Forum: Plugins
In reply to: Comments in Moderation – Front of blog?Great thanks…
I am now using this code on my webpage:
<?php
$numcomments = $wpdb->get_var(“SELECT COUNT(*) FROM $wpdb->comments WHERE comment_approved = ‘0’”);
echo ‘(‘,$numcomments,’)’;
?>Anyway to make only admin see it though?