Quote:
First off, may I say great hack
|
Thank you DWZ, much aprichiated, now lets sort out those problems
But yeah, as I said a few things, if you look at the left hand side, down to the online users bit, it lists the online users, but their profile is all linked....[/quote]
To fix this change your forumhome_loggedinuser to:
Code:
<a href="$bburl/member.php?s=$session[sessionhash]&action=getinfo&userid=$userid">$username</a>$invisibleuser
I.E, add $bburl/ before member.php
This will be fixed in v2.0.2 when I will add a home_loggedinuser template.
Quote:
Next small problem, the poll, I can't get it to work. I put in the right forum ID in the file, and made a new thread with a poll in it, but it wont come up on the vbindex page?
|
Make sure that you have the following template:
home_poll:
Code:
<form action="$bburl/poll.php" method="get">
<input type="hidden" name="s" value="$session[dbsessionhash]">
<input type="hidden" name="action" value="pollvote">
<input type="hidden" name="pollid" value="$pollinfo[pollid]">
<table cellpadding="{tableouterborderwidth}" cellspacing="0" border="0" {tableouterextra} width="140" align="center"><tr><td>
<table cellpadding="4" cellspacing="{tableinnerborderwidth}" border="0" {tableinnerextra} width="100%">
<tr>
<td bgcolor="{tableheadbgcolor}" align="center" colspan="4"><smallfont><b>$pollinfo[question]</b></smallfont></td>
</tr>
$pollbits
</table>
</td></tr></table>
<table cellpadding="2" cellspacing="0" border="0" width="140" {tableinvisibleextra} align="center">
<tr>
<td style="font-size: 8pt" align=center><smallfont><br><input type="submit" class="bginput" value="Vote!" style="font-size: 8pt"><br><br>
<a href="$bburl/poll.php?s=$session[sessionhash]&action=showresults&pollid=$pollinfo[pollid]">Result</a>
</smallfont></td></tr>
</table>
</form>
Does the poll appear when you have voted on it? Amity also has this problem, if this doesn't fix it perhaps you could give me some info about your setup PHP, MySQL and vB version so I can look into this.
Quote:
Last thing, when you login, it takes you to the forum home page, is it possible for it to take you back to the news page (i.e. vbindex?)
|
Check your PM for the login.php file (I can't post it as it is basicly a large chunk of unmodified source code.)
Firstly edit the URL to your vbindex.php in the last line of code )where it says: PATH TO VBINDEX) and upload to your forums directory.
Edit the home_welcomelogin template:
Code:
<table border="0" cellpadding="0" cellspacing="0">
<form action="$bburl/login.php" method="post">
<tr>
<td nowrap><smallfont><b>Not cookied?</b><br>Login with username and password:</smallfont></td>
</tr><tr>
<td nowrap><input type="hidden" name="s" value="$session[sessionhash]">
<input type="hidden" name="action" value="login">
<input type="text" class="bginput" name="username" size="7">
<input type="password" class="bginput" name="password" size="7">
<input type="submit" class="bginput" value="Login!"></td>
</tr>
</form>
</table>
</center>
The forum action has changed to login.php not member.php
Let me know if it all works