1

(6 replies, posted in Programming)

should be pretty easy...

function remote2 (url) {
    window.opener.location = url;
    window.opener.focus();
}

nope...

3

(4 replies, posted in Programming)

Nope, it doesn't... smile

What is your exact problem?
If it's the images and such not loading when you request "thatDirectory", that's because they are being
rewritten to your index.php...

Krigsoffer wrote:
?>
        <div class="logintop">
            <form id="login" name="login" method="post" action="login.php?action=in" onsubmit="return process_form(this)">
                <p>
                    <input type="hidden" name="form_sent" value="1" />
                    <input type="hidden" name="redirect_url" value="<?php echo $redirect_url ?>" />
                    <?php echo $lang_common['Username'] ?>: <input type="text" name="req_username" size="16" maxlength="25" />
                     <?php echo $lang_common['Password'] ?>: <input type="password" name="req_password" size="16" maxlength="16" />
                     <input type="submit" value="<?php echo $lang_common['Login'] ?>" />
                </p>
            </form>
        </div>
<?php

How and where?

There... smile

I've removed the register link, and changed the login link with a submit button.
You can replace it with a image button, eg:
  <input type="image" src="/url/to/submit.png" alt="<?php echo $lang_common['Login'] ?>" />

5

(5 replies, posted in PunBB 1.2 troubleshooting)

You don't need to update your whole site, only the punbb code.

Let's say you're using this ssi tag right after the <body> part of your pages:

<!--#include virtual="/includes/header.html" -->

And you've got your punbb installed at:

http://www.example.com/forum/

Then you should look for:

// END SUBST - <body>

in header.php, and right after that, enter the following:

include_once '../includes/header.html';


That's it... smile