largeblackcoffee
Forum Replies Created
-
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] cPanel Cron backup triggerDaniel, thank you for your response. That really helped me get going the right direction. I did get it working the way I wanted using this cron command within the cPanel cron window:
curl ‘http://www.domain.com/wp-cron.php?_nonce=f2b2e799&backwpup_run=runext&jobid=1’ >/dev/null 2>&1
I like the ability to have more precise control the running of the backup.
Thanks Again!
Forum: Plugins
In reply to: [Meteor Slides] [Plugin: Meteor Slides] Exactly where should code be placedAwesome. Thanks JLeuze!
Forum: Plugins
In reply to: [Meteor Slides] [Plugin: Meteor Slides] Exactly where should code be placedJLeuze, thank you very much for your response. The theme I’m using is Graphene. However I think I found the issue. The slides are actually showing, but they are on the far left side under the content, even though I am calling it from the right sidebar. A simple CSS call to this set of slides should take care of the issue. Thanks again.
FOUND IT. This section of code was missing from the header.php file. Once added it worked fine. THANKS for all the help as it helped me look in places I would not otherwise have looked.
<?php /* We add some JavaScript to pages with the comment form * to support sites with threaded comments (when in use). */ if ( is_singular() && get_option( 'thread_comments' ) ) wp_enqueue_script( 'comment-reply' ); /* Always have wp_head() just before the closing </head> * tag of your theme, or you will break many plugins, which * generally use this hook to add elements to <head> such * as styles, scripts, and meta tags. */ wp_head(); ?>Takayuki, I don’t disagree with your response. However, the issue I’m having is that one site shows these messages in the boxes, while the other does not and simply shows them without a box. Is there a way to have them show the boxes? Thanks.
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Validation Error Background ColorMY BAD … it always helps to upload the changes to the proper domain. Sorry to trouble you. ;-(
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Validation Error Background ColorWAIT, I think I may have found the issue.
Takayuki,
Please confirm I got this right. If the form data is used for an e-mail then escaping is not necessary. However, if it is sent to a display, then it must be escaped.
Thank You Again!
Takayuki,
Sure, they are not HTML once they are part of an e-mail, but it is my understanding that they must be cleansed immediately upon submittal , i.e. in the parsing routine or prevent use of them through validation.
Agreed, the message field is good and safe. However, all of the other fields still maintain the characters. My understanding of XSS is that I should be concerned about all submitted fields. Thanks Takayuki.
Takayuki, thank you for your response. Unfortunately I feel I may have been misunderstood. I tried that setting both ways (off and on), but the result is the same. Special characters do not get removed. They are simply passed on. I’m looking to have < and > removed or converted to ASCII in order to address XSS security concerns. Any suggestions if I hack out a solution? THANKS!