The MU forums have moved to WordPress.org

How to integrate Signup Sheet into Non-Wordpress site? (10 posts)

  1. Farkel
    Member
    Posted 17 years ago #

    Hi,

    My main website, the front that the MU host is going to be run off of, is not wordpress and I was wondering how you could stick the signup sheet into the body of my non-wordpress site?

    Thanks!

  2. Farkel
    Member
    Posted 17 years ago #

    Anyone? :)

  3. pumpkinslayer
    Member
    Posted 17 years ago #

    I know quenting's site http://ublog.fr has a signup page at http://creerunblog.fr , but I'm not sure how he did that, perhaps have a look at the signup form there.

  4. corourke
    Member
    Posted 17 years ago #

    It should work so long as it's written to be part of the loop (afaik) or at the very least the "new" signup form is an allowed source (changing the if blah else die section of the file for example?)

  5. suleiman
    Member
    Posted 17 years ago #

    why does ublog.fr say "powered by TypePad" at the top? I thought he was using wpmu...

  6. Farkel
    Member
    Posted 17 years ago #

    Corourke could you go more in depth on that for me? I suck at PHP and have no clue where to even begin :(

  7. lunabyte
    Member
    Posted 17 years ago #

    Because Slayer made a typo. It's actually uNblog.fr, as the link was missing the "n".

    You don't need php, just make an html form that posts the info to your wp-signup.php? That's all Quenting did. No real magic there.

  8. Farkel
    Member
    Posted 17 years ago #

    I tried using the php "include" and pointed it to the wp-signup.php and it didn't work :( It had like the entire default WP blog template showing inside my webpage, which was weird. And when I tried signing up from that it just crapped out

    whats the code for the html form? :) im such a nooooob

  9. lunabyte
    Member
    Posted 17 years ago #

    whats the code for the html form?

    Sounds like you have some learning to do.

  10. Farkel
    Member
    Posted 17 years ago #

    Here's the code for the page the wp-signup form should show up on:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
    <head>
    <link rel="shortcut icon" HREF="favicon.ico" />
    <title>TurboRush Automotive Community</title>
    <meta http-equiv="Page-Enter" content="blendTrans(Duration=0.3)" />
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="Revisit-after" content="1 days" />
    <meta name="Classification" content="Cars" />
    <link href="content/style.css" rel="stylesheet" type="text/css" media="screen" />
    <script type="text/javascript" src="content/js/prototype.js"></script>
    <script type="text/javascript" src="content/js/scriptaculous.js?load=effects"></script>
    <script type="text/javascript" src="content/js/lightbox.js"></script>
    </head>
    <body>
    <div id="wrapper">
    <div class="introText">TurboRush.com is an open-ended community driven towards the car enthusiasts and freeminded.</div>
    <div id="header"><img SRC="content/header.jpg"
    alt="TurboRush.com" width="745" height="200" title="TurboRush.com" />
    <ul class="menu">
    <li class="current_page_item"><a href="index.php" title="Home">Home</a></li>
    <li class="page_item"><a href="links.php" title="Links">Links</a></li>
    <li class="page_item"><a href="support.php" title="Support">Support</a></li>
    <li class="page_item"><a href="contact.php" title="Contact">Contact</a></li>
    <li class="page_item"><a href="misc.php" title="Miscellaneous">Miscellaneous</a></li>
    <li><a href="http://www.turborush.com/forums" title="Forums">Forums</a></li>
    </ul>
    </div>
    <h3 class="content">Sign Up </h3>
    <div class="content">
    <p>Sign Up form goes here, preferably like the 3-step process at unblog.fr </p>
    </div>
    <div class="content">
    <div class="contentEnd2"><?php include('footer.php'); ?></div>
    </div>
    </div>
    </body>
    </html>

About this Topic