tmaster
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Object doesn’t support this property or methodI get the same page on all my admin screens.
The pages load but they have a IE script error in line 7 char 0
line 7 has this in it,
//<![CDATA[ addLoadEvent = function(func) {if (typeof jQuery != "undefined") jQuery(document).ready(func); else if (typeof wpOnload!='function'){wpOnload=func;} else {var oldonload=wpOnload; wpOnload=function(){oldonload();func();}}}; //]]>
This is a syntax error
Forum: Plugins
In reply to: [Plugin: Bad Behavior] Cleaning LogAm I missing something it already auto purges does it not?
Forum: Installing WordPress
In reply to: Error/warraning after upgradation from 2.5 to 2.6Got the same plugin error. Disable all plugins and reenable them one at a time till you find the one that causes the error.
Register Plus 2.9 was causing this error on mine.Forum: Plugins
In reply to: [Plugin: Register Plus] need something to stop the.ru signupsI am sorry I have never meet a real .ru user. Not counting a hacker. The country has no isp abuse rules.
I banned all the .ru IPS I could find.
https://www.countryipblocks.net/index.phpOn the version I had CAPTCHA was broken I will try the new version.
Forum: Plugins
In reply to: Bad Behavior and speed?This can be fixed by editing the blackhole file and commenting out the dns server or servers that are slowing you down.
Forum: Plugins
In reply to: [Plugin: Register Plus] ERROR: Image Validation does not match.Using PHP Version 4.3.11
Forum: Plugins
In reply to: [Plugin: Register Plus] ERROR: Image Validation does not match.Doesn’t work for me gives a Image validation error.
Forum: Requests and Feedback
In reply to: WP 2.5 Write Panel UsabilityThe file dates are older than the ones in 2.5.1 telling me perhaps something has changed in the new css version.
Forum: Everything else WordPress
In reply to: new post not showing up on indexI am having the same problem. I have 5 other installs that are working fine.
But on one the latest post will not show up.
If you post a second post then it will show up.But the last post is always hidden. It has nothing to do with the date or draft settings it just won’t show up until you make another post.
Might be a template problem any ideals?
Forum: Fixing WordPress
In reply to: Why can users see email and IP addressesJust doesn’t make sense.
Trusting a user to make moderated post should not give him permission to see other users email addresses. And why would I trust them to post. If I trust them to make a comment then I trust them to post. If they can get by Spam Karma then they can post.Level 1 users can’t view the users accounts so why should they be able to see the email addresses. Thata€?s amateurish. Its also a major security and privacy violation.
Well anyway I found the flaw and corrected it. For others that want it here is the fix. search in edit_comments.php in admin for the line with the Name: in it and change it to.
<?php _e(‘Name:’) ?> <?php comment_author() ?>
<?php
// start privacy modif ($user_level > 2 ) {
if ($comment->comment_author_email) {
echo “| <? php _e(‘E-mail:’) ?><?php comment_author_email_link()?>”;
}
if ($comment->comment_author_url) {
echo “| <?php _e(‘URI:’) ?> <?php comment_author_url_link()?>”;
}
echo “| <?php _e(‘IP:’) ?> \”><?php comment_author_IP() ?>”;
}
// End mod
?>Forum: Fixing WordPress
In reply to: Why can users see email and IP addressesWhy would a user thats allowed to post need to see the email addresses of others users. Thats nuts.
What routine is this located in so I can change it to normal internet privacy standards.