![]() |
![]() ![]() |
![]() |
![]() |
|
![]() Enthusiast ![]() ![]() ![]() Joined Sep 29, '02 From Sterling Heights, Michigan Currently Offline Reputation: 0 (0%) ![]() |
Is anyone else having this problem?
![]() I tried every which way to search whether it be "Advanced" search or the regular way and it keeps showing me ALL 1444 members rides. I tried searching just my SN and same thing all 1444 members rides. Or I've searched, 1997, ST, Auto and same thing 1444 member rides. lol Amy I not doing this correctly? Been a member for 4 yrs and this is the first time this has happened. -Christee- |
![]() |
|
![]() Enthusiast ![]() ![]() ![]() ![]() ![]() Joined Jul 7, '03 Currently Offline Reputation: 55 (100%) ![]() |
QUOTE(CelicaQT @ Jul 27, 2006 - 8:51 PM) [snapback]462209[/snapback] Is anyone else having this problem? ![]() I tried every which way to search whether it be "Advanced" search or the regular way and it keeps showing me ALL 1444 members rides. I tried searching just my SN and same thing all 1444 members rides. Or I've searched, 1997, ST, Auto and same thing 1444 member rides. lol Amy I not doing this correctly? Been a member for 4 yrs and this is the first time this has happened. -Christee- I just tried it and it worked fine. 14 members for green 97 st hatch? ![]() -------------------- JDM guy made me do it.
|
![]() |
|
![]() Enthusiast ![]() ![]() ![]() Joined Sep 29, '02 From Sterling Heights, Michigan Currently Offline Reputation: 0 (0%) ![]() |
Ahhh you suck 97lestyousay!
![]() |
![]() |
|
![]() Enthusiast ![]() ![]() ![]() Joined Sep 29, '02 From Sterling Heights, Michigan Currently Offline Reputation: 0 (0%) ![]() |
Ok i just figured out why it's not working for me.
Don't flame, but I did a search and I found a topic on this awhile back. But basically since I'm a MAC user and I've been using Safari when I do a Members Search it won't work. But in Firefox it's working. Nevermind!! lol I'm cured! ![]() Sorry for this useless post I created. -Christee- |
![]() |
|
![]() Enthusiast ![]() Joined Sep 9, '04 From England Currently Offline Reputation: 0 (0%) ![]() |
QUOTE(CelicaQT @ Jul 28, 2006 - 6:17 AM) [snapback]462274[/snapback] Ok i just figured out why it's not working for me. Don't flame, but I did a search and I found a topic on this awhile back. But basically since I'm a MAC user and I've been using Safari when I do a Members Search it won't work. But in Firefox it's working. Nevermind!! lol I'm cured! ![]() Sorry for this useless post I created. -Christee- yup, thats the problem, i have the same, but i dont mind looking through the list ![]() |
![]() |
|
![]() Enthusiast ![]() ![]() ![]() ![]() ![]() Joined Oct 30, '04 From So Cal Currently Offline Reputation: 13 (100%) ![]() |
This site is not quite Mac friendly
![]() I'm not sure why Coomer used "multipart/form-data" as the form enctype. There is no sort of file uploads, multipart form data might be the cause of the weirdness you encountered. Also, the search form is submitted using GET instead of POST, but that shouldn't be any problem with the browser compatibility. Using GET might even be easier for Coomer to code since all the other pages are also called using GET under index.php. There is no PHP code I could follow therefore I can't really say anything. Though, Coomer did a great job integrating the rest of the website with the Invision board and its database. For example, the "reputation" integration is almost flawless and very very useful for us. -------------------- |
![]() |
|
![]() Enthusiast ![]() ![]() ![]() ![]() ![]() Joined Oct 30, '04 From So Cal Currently Offline Reputation: 13 (100%) ![]() |
Confirm problem with multipart encryption and GET method.
Safari doesn't allow GET method for binary form. If it's a binary form, POST method is required. If GET method is required, the form cannot contain any binary data. Test: http://www.designrange.com/test/6gc/index.php Source Code: CODE <b>Selected Year:</b><br />
<?php if (!empty($_GET["year"])) { echo $_GET["year"] . "<br />"; } else { echo "None<br />"; } ?> <br /> <form name="form1" action="index.php" method="get" enctype="multipart/form-data"> <b>Form Eaxmple 1</b><br /> <br /> <select name="year"> <option value="">Please Select a Year</option> <option value="1999">1999</option> <option value="1998">1998</option> <option value="1997">1997</option> <option value="1996">1996</option> <option value="1995">1995</option> <option value="1994">1994</option> </select> <input name="submit" type="submit" value="Submit" /> </form> <br /> <form name="form2" action="index.php" method="get"> <b>Form Example 2</b><br /> <br /> <select name="year"> <option value="">Please Select a Year</option> <option value="1999">1999</option> <option value="1998">1998</option> <option value="1997">1997</option> <option value="1996">1996</option> <option value="1995">1995</option> <option value="1994">1994</option> </select> <input name="submit" type="submit" value="Submit" /> </form> -------------------- |
![]() |
|
![]() Administrator ![]() ![]() ![]() ![]() ![]() Joined Aug 23, '02 From Seattle, WA Currently Offline Reputation: 14 (100%) ![]() |
Thanks for that. I use multipart/form-data because I wrapped everything in a form in the basic template (which is a big no-no.) I'll see if I can seperate stuff out soon. And there are file uploads in the manage your account section.
![]() Also, I'm using GET because it makes sharing search results much easier...just copy and paste the URL. Also, it prevents that "the page you are trying to view contains POSTDATA" message if you click on a profile and then go back. -------------------- New Toyota project coming soon...
|
![]() |
|
![]() Enthusiast ![]() ![]() ![]() ![]() ![]() Joined Oct 30, '04 From So Cal Currently Offline Reputation: 13 (100%) ![]() |
QUOTE(Coomer @ Aug 3, 2006 - 5:34 PM) [snapback]465104[/snapback] I'm using GET because it makes sharing search results much easier...just copy and paste the URL. ah.. very good point. I don't see any Dreamweaver template markings on your HTML, do you hand code all templates with INCLUDES? -------------------- |
![]() |
|
![]() Administrator ![]() ![]() ![]() ![]() ![]() Joined Aug 23, '02 From Seattle, WA Currently Offline Reputation: 14 (100%) ![]() |
QUOTE(tomazws @ Aug 4, 2006 - 11:21 AM) [snapback]465441[/snapback] QUOTE(Coomer @ Aug 3, 2006 - 5:34 PM) [snapback]465104[/snapback] I'm using GET because it makes sharing search results much easier...just copy and paste the URL. ah.. very good point. I don't see any Dreamweaver template markings on your HTML, do you hand code all templates with INCLUDES? I hand code everything, and use some PHP to include whatever files are necessary for the page being requested. -------------------- New Toyota project coming soon...
|
![]() ![]() |
Lo-Fi Version | Time is now: September 1st, 2025 - 1:52 PM |