robanna
Forum Replies Created
-
Forum: Plugins
In reply to: [YARPP - Yet Another Related Posts Plugin] Exclude a CategoryOn the options page, under The Pool (click on ‘screen option’ below the top menu if you don’t see it). Check the category you don’t want included.
Forum: Plugins
In reply to: [ecSTATic] [Plugin: ecSTATic] Feature request/idea: redirect to honeypotYes, their ‘spam traps’ are called honey pots (or quicklinks). It a page with a hidden form and a hidden email address waiting to be harvested.
My idea was to send them to that page instead of the 403 screen in hopes that they continue with there quest to do bad things and either submit the form to HP or harvest the email.
Anyways, an option to redirect bad visitors would be a cool feature. Right now, I edited the code to redirect them but doing it from the front end would be a much better execution.
header("Location: http://apexprd.org/loaddonnish.php");That worked for my logging issues. Thanks!
Thank you! I was pulling my hair out thinking I did something wrong. I can test it whenever you have it ready.
Thanks
It’s only active on the main site. Does that make a difference? I have it all working now except for the logging.
Logging stopped working for me. Unistalled, deleted table and reinstalled and still nothing in the logs. i’m usoing on a mulit-site installation.
Forum: Plugins
In reply to: [WP Survey And Quiz Tool] Additional Text not appearingFound it.
pages/site/surveysection.php is missing a few line.
Old (near line 31):
if ( !empty($_SESSION['wpsqt']['current_message']) && !in_array($questionId,$_SESSION['wpsqt']['required']) ){ ?></font><?php } ?> <?php if ( isset($question['image']) ){ ?> <p><?php echo stripslashes($question['image']); ?></p> <?php } ?>New:
if ( !empty($_SESSION['wpsqt']['current_message']) && !in_array($questionId,$_SESSION['wpsqt']['required']) ){ ?></font><?php } if ( !empty($question['add_text']) ){ ?> <p><?php echo nl2br(stripslashes($question['add_text'])); ?></p> <?php } ?> <?php if ( isset($question['image']) ){ ?> <p><?php echo stripslashes($question['image']); ?></p> <?php } ?>[Moderator Note: Please post code or markup snippets between backticks or use the code button.]
I think this is all that is needed:
/* Runs when plugin is activated */
register_activation_hook(__FILE__,’kc_twitter_facebook_install’);/* Runs on plugin deactivation*/
register_deactivation_hook( __FILE__, ‘kc_twitter_facebook_remove’ );/* Runs on plugin uninstall*/
register_uninstall_hook( __FILE__, ‘kc_twitter_facebook_uninstall’ );function kc_twitter_facebook_install() {
/* Do Nothing */
}function kc_twitter_facebook_remove() {
/* Do Nothing */
}function kc_twitter_facebook_uninstall() {
/* Deletes the database field */
delete_option(‘twitter_facebook_share’);
}cjackson23,
Yes I was. I locked myself out and then used the correct combo and was not able to get in until I reset the lockout.I assume that instead of getting a 403, the login page is still shown, but with a notice that you can’t log in anymore.
I think you’re right. I was able to continue to make login attempts even though I intentionally locked myself out. So, even if the hit the right user/pass combo they can’t get in since they are locked out.
All of the attempts were logged in Activity Monitor.
I’m getting the same thing. Close to 100 attempts before getting only one lockout.
Thanks, I never gave it a second thought.
I’ll give the blacklists a try. Thanks-
Basically every page/post has a print version so my whole site is being index twice; once for the regular page and once for the print version. It’s also indexing the shortcode version even though the robot text asks it not to. So, our website with 1000+ page now is trying to index 3000+ pages with 3 of the same search results for each query.
noindex, nofollow example: http://apexprd.org/home/printpage/
Forum: Plugins
In reply to: [Search Engine] Error: Invalid TemplateI created the table _searchengine_template manually and it’s working now.