• hi folks,

    something strange just happened to my wp installation:
    i was working on a password protection and from one moment to the other my submit button was gone! what makes me mad about it is that i already replaced all my installation files with the working ones from my staging server. from my old version there?′s only the theme folder and wp-config.php left.
    i was double checking all theme files as well as the template-functions-post.php, wp-pass.php and so on, but can?′t find any hint what?′s happening there.

    here are the sources:
    https://www.eyetag.de/weblog
    https://www.eyetag.de/weblog/stage

    <div class="storycontent">
    <p></p><form action="&quot;https://www.eyetag.de/weblog/wp-pass.php&quot;" method="&quot;post&quot;"><br>
    <p>This post is password protected. To view it please enter your password below:</p><br>

    <p><label>Password: <input name="&quot;post_password&quot;" size="20" type="&quot;text&quot;"></label> <input name="&quot;Submit&quot;" value="&quot;Submit&quot;" type="&quot;submit&quot;"></p><br>
    </form>

    </div><!-- end STORYCONTENT -->

    i?′m desperate!
    please, anybody there to help me out?

    many thanks!
    et

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter eyetag

    (@eyetag)

    it does the same with other post forms (or at least with some of them) as you can see at https://www.eyetag.de/weblog/?page_id=17
    … odd

    Thread Starter eyetag

    (@eyetag)

    nobody there to help me out of this? anything unclear or more information needed? please speak to me;-!

    Is your code written exactly how it’s shown there, with the &quot; entity tags and all…? If so, go through and delete all of those, then see if it fixes the problem. Also, did you try to edit your page outside of WordPress, by chance, or copy/paste code from another program?

    Thread Starter eyetag

    (@eyetag)

    no, this is only the generated output.
    in template-functions-post.php (/includes) it?′s written like that
    <?php

    function get_the_password_form() {
    $output = '<form action="' . get_settings('siteurl') . '/wp-pass.php" method="post">
    <p>' . __("This post is password protected. To view it please enter your password below:") . '</p>
    <p><label>' . __("Password:") . ' <input name="post_password" type="text" size="20" /></label> <input type="submit" name="Submit" value="Submit" /></p>
    </form>
    ';
    return $output;
    }
    point is that i don?′t know where the hell these qutoes come from…

    Thread Starter eyetag

    (@eyetag)

    your second question: i edit them on the server, directly through ftp client…

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘wp generates " into input form’ is closed to new replies.