6G Celicas Forums

Welcome Guest ( Log In | Register )

> Members Rides, Can't filter rides
post Jul 27, 2006 - 10:51 PM
+Quote Post
CelicaQT



Enthusiast
***
Joined Sep 29, '02
From Sterling Heights, Michigan
Currently Offline

Reputation: 0 (0%)




Is anyone else having this problem? confused.gif

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-
 
Start new topic
Replies (1 - 9)
post Jul 27, 2006 - 11:22 PM
+Quote Post
97lestyousay



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? confused.gif

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? biggrin.gif


--------------------
JDM guy made me do it.
post Jul 27, 2006 - 11:43 PM
+Quote Post
CelicaQT



Enthusiast
***
Joined Sep 29, '02
From Sterling Heights, Michigan
Currently Offline

Reputation: 0 (0%)




Ahhh you suck 97lestyousay! biggrin.gif What the heck am I doing wrong? Should I be clearing out my cookie or something?
post Jul 28, 2006 - 12:17 AM
+Quote Post
CelicaQT



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! biggrin.gif

Sorry for this useless post I created.

-Christee-
post Jul 31, 2006 - 6:42 AM
+Quote Post
gt4uk



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! biggrin.gif

Sorry for this useless post I created.

-Christee-


yup, thats the problem, i have the same, but i dont mind looking through the list biggrin.gif
post Aug 3, 2006 - 2:45 PM
+Quote Post
tomazws



Enthusiast
*****
Joined Oct 30, '04
From So Cal
Currently Offline

Reputation: 13 (100%)




This site is not quite Mac friendly tongue.gif

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.


--------------------
post Aug 3, 2006 - 3:44 PM
+Quote Post
tomazws



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>


--------------------
post Aug 3, 2006 - 7:34 PM
+Quote Post
Coomer



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. wink.gif

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...
post Aug 4, 2006 - 1:21 PM
+Quote Post
tomazws



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?


--------------------
post Aug 4, 2006 - 1:40 PM
+Quote Post
Coomer



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...

Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 



Lo-Fi Version Time is now: September 1st, 2025 - 1:41 PM