Hi Lynne, thank you so much for the reply.
I really appreciate it. There is a lot of code so I'll pm you the link to the html page.
You wont be able to search as it's not for guests but at least you might see what is missing.
Propably loads because I have not put any php into it.
I literally placed the html from the source into a blank html document for the form fields, the header code, the css and the java script from the original search.
thanks again.
--------------- Added [DATE]1244031234[/DATE] at [TIME]1244031234[/TIME] ---------------
Quote:
Originally Posted by Lynne
This is from the memberlist_search template:
HTML Code:
<form action="memberlist.php?do=getall" method="post">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
<input type="hidden" name="do" value="getall" />
Is the securitytoken getting populated on the page (check the page source)? Perhaps you removed some needed stuff from your php page? It's very hard to tell what is going on when you've only posted a small bit of the template.
|
Hi again, I have fixed this now by changing the line in the code for the security token to:
Code:
<input type="hidden" name="securitytoken" value="<?php echo $vbulletin->userinfo['securitytoken']; ?>" />
I also changed the file from html to php and then included global.php which I was not doing.
I have one last problem that has occured though in that doing the search I am getting logged out. Anywhere else on my forums even without ticking remember me, I do not ever get logged out.
It works if I tick remember me but I can't expect all my members to do this.
Is there something else I should add to my custom search page to stop users getting logged out?