mrbum21
Forum Replies Created
-
Forum: Plugins
In reply to: [Redirection] “HTTP redirect status code must be a redirection code, 3xx.”Ran into this exact error today. It appeared that WordPress was automatically redirecting the post in question, (info on automatic redirection via the below link) causing problems with an identical redirect manually setup in Redirection. Perhaps @relish1227 was seeing a similar problem.
Every WordPress post has its own slug, which is automatically generated by your post’s title. If you decide to change the post slug later, WordPress will remember the old one and redirect it to the new one. It’s possible to prevent old post slug redirection in WordPress by adding removing a couple of actions from your WordPress core with a small snippet.
Forum: Plugins
In reply to: [Theme My Login] reset password problemSo, has anyone tired to update line 1103 in the file:
…/theme-my-login/includes/class-theme-my-login.php
from:
$hashed = $wp_hasher->HashPassword( $key );
to what star_movie_02 is suggesting:
$hashed = time() . ':' . $wp_hasher->HashPassword( $key );
Looking at the a larger subset of the class-theme-my-login.php code there is a bunch going and I’m not positive this is the real fix, but….
Best I can tell if this doesn’t work, it just will simply fail with the same error.
Forum: Plugins
In reply to: [Theme My Login] reset password problemThis all sounds like problems related to WordPress core changes to me.
IF we don’t hear anything from Jeff the developer in a few days, I’ll take a peek at the plug-ins code and see if I can come-up with a fix.
Cheers.
Forum: Plugins
In reply to: [Theme My Login] reset password problemThis has been a commonish problem in the past, however it appears that the way password changes are managed has changed in the newest version of the WordPress core, version 4.3.
What version of WordPress are you using? Did this problem start when you upgraded today?
(I’m not a maintainer of this plug-in but I’m interested in how these core changes are going to affect me and my use of this plug-in.)
Um, sorry for the delay smackcoders…Any rate, Ultimate CSV importer is a great plugin, certainly the best in the class. Keep up the good work.
It seemed like it is asking, “How many rows in each import run?”
Least from what I can tell when I just imported a batch.
The way Ultimate CSV importer pulls in featured images is awesome and better than your mentioned plugin, if I/we could get this issue fixed-up.
I emailed the smack coders people about this thread hoping it will help!
Seeing the same problem too, please help Codesmackers!
Forum: Plugins
In reply to: [Plugin: Ultimate WP CSV Importer] importing HTMLSeems like the same problem as this…..
https://www.ads-software.com/support/topic/wont-import-html-tags-into-content-box
Forum: Plugins
In reply to: [Sweet Captcha] [Plugin: Sweet Captcha] error w admin noticesYup, this visually fixes the problem…..
Issue started for me when we upgraded Contact Form 7.
(I think.)
Forum: Fixing WordPress
In reply to: Contact form not working due to permalinks?I ran into a similar problem a few times including today. $_POST data doesn’t get sent on form submission but everything looks good code wise. This was after I used much more complicated POST names to ensure zero problems there. Best I can tell problem for me was simply related to lack of name being assigned to input fields.
Below snippit bits worked for me.
<form action="<?php the_permalink(); ?>" id="contactForm" method="post"> <input type="hidden" name="submitted" value="yes" /> <fieldset id="step_1"> <legend>Step 1</legend> <strong>Please introduce yourself:</strong><br /> <ol class="forms"> <li> <label for="contactName"> Name- </label> <input type="text" name="contactName" id="contactName" value="<?php echo (isset($_REQUEST['contactName']) ? $_REQUEST['contactName'] : ''); ?>"></input>
Posting as I’ve run across problem multiple times before and what to throw some help out to myself and others with similar issues.