Yael K. Miller
Forum Replies Created
-
Ok. Where is the log for Better WP Security?
I just took a closer look at the error log and it has “Better WP Security” all over it. Including a very long section of text with html tags. Here’s a small section:
<p>Here’s another example. Last winter a school contacted me about a hacked WordPress site they were running. This site ran their entire department including all faculty, marketing, etc so it’s importance to the department was higher than most.
So my question still stands: why is this error log in my wp-admin folder?
My other question was going to be: “why is I clicked “Remove” Data is it still almost 700KB?” but I’ve just checked my folder again and the error log is no longer there. What is going on?
Forum: Plugins
In reply to: [AntiVirus] [Plugin: AntiVirus] Manual Scan Not WorkingSince I updated to WP 3.3.2, the manual scan works on all my sites.
Forum: Plugins
In reply to: [AntiVirus] [Plugin: AntiVirus] Manual Scan Not WorkingNo, it’s not a child theme.
Forum: Plugins
In reply to: [AntiVirus] [Plugin: AntiVirus] Manual Scan Not WorkingI use Thesis 1.8.4 I don’t think it’s theme related. And the weird thing is that it works on some of my sites and doesn’t work on one of them.
I sent an email to the plugin creator. I haven’t gotten a response yet. I suggest you email him as well. Maybe if enough people email him, he’ll respond. Email address: smueller[AT]ebiene[DOT]de
Forum: Fixing WordPress
In reply to: Unable to drag Widgets@depressed11 Click on Screen Options on the Widgets page. Make sure “accessibility mode” is not enabled.
Forum: Fixing WordPress
In reply to: I'm unable to drag widgets to the sidebar…@mrjph Thanks so much! I had the same problem with the widgets not dragging and it turns out that accessibility mode was enabled. I didn’t even know such a thing existed.
Forum: Plugins
In reply to: [Plugin: Audio Player] Show Remaining Time BuggyIt’s on a private page with private info. But I setup a test page with similar circumstances.
I think I found the source of the issue but I can’t figure out how to solve it. See test page
Both audio are based on the same file — the top’s counter works and the bottom’s counter doesn’t.
The top one I FTPed it without touching it — it already had ID3 tags.
The bottom one I opened WavePad Sound Editor (by NCH), edited the ID3 tags, and then FTPed it.
What could WavePad possibly be doing that’s scrambling Audio Player?
Forum: Fixing WordPress
In reply to: Page Redirects to a Page that doesn’t Exist and I don’t want it toTurns out it’s a issue with the Redirection plugin. I’m going to get rid of it.
Forum: Fixing WordPress
In reply to: Commentator link is brokenAfter I hit “submit a comment,” my site went to a 404 page. This is the code that solved my problem. Maybe it can solve yours.
In comments.php try adding this line of code:
<input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars($_SERVER["REQUEST_URI"]); ?>" />
After:
<?php thesis_hook_comment_form(); ?>
So the whole thing looks like:
<?php thesis_hook_comment_form(); ?> <p> <input name="submit" class="form_submit" type="submit" id="submit" tabindex="5" value="<?php _e('Submit', 'thesis'); ?>" /> <input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" /> <input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars($_SERVER["REQUEST_URI"]); ?>" /> </p> <?php do_action('comment_form', $post->ID); ?>
This solution is from Andrew Barnett at https://wpthoughts.com/ — I found him on Twitter as @wpthoughts
Forum: Fixing WordPress
In reply to: Blank page appears after posting a commentAfter I hit “submit a comment” my site went to a 404 page. This is the code that solved my problem. Maybe it can solve yours.
In comments.php try adding this line of code:
<input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars($_SERVER["REQUEST_URI"]); ?>" />
After:
<?php thesis_hook_comment_form(); ?>
So the whole thing looks like:
<?php thesis_hook_comment_form(); ?> <p> <input name="submit" class="form_submit" type="submit" id="submit" tabindex="5" value="<?php _e('Submit', 'thesis'); ?>" /> <input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" /> <input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars($_SERVER["REQUEST_URI"]); ?>" /> </p> <?php do_action('comment_form', $post->ID); ?>
This solution is from Andrew Barnett at https://wpthoughts.com/ — I found him on Twitter as @wpthoughts