Announcement

Collapse
No announcement yet.

extending the search, web 2.0 style

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    #31
    Originally posted by gabrielcrowe View Post
    it comes from my sandbox
    Is that a scarier version of Pandora's?


    Bikster
    SellerDeck Designs and Responsive Themes

    Comment


      #32
      It's the booby-trapped version Jont
      Reusable Snore Earplugs : Sample Earplugs - Wax Earplugs - Women's Earplugs - Children's Earplugs - Music Earplugs - Sleep Masks

      Comment


        #33
        First successful site integration:
        http://www.skateasylum.co.uk/

        Comment


          #34
          Nice one Gabe, when do we get our grubby little hands on it???
          Cheers

          David
          Located in Edinburgh UK

          http://twitter.com/mcfinster

          Comment


            #35
            Originally posted by gabrielcrowe View Post
            First successful site integration:
            http://www.skateasylum.co.uk/
            Marvellous, Gabe.

            IE7 bug:
            Code:
            Line: 51
            Char: 50
            Error: 'null' is null or not an object
            Code: 0
            URL: http://www.skateasylum.co.uk
            One other slight issue is the box which the results appear seems to show all the time, perhaps this is what Lee was talking about yesterday? And something seems to have broken the layout on the Alchemy Pure Aggressive Skate page in IE7, all other product pages seem fine.

            Comment


              #36
              Gabe,

              Minor cosmetic problem on skateasylum with some images being stretched (search for "long" as an example).
              Norman - www.drillpine.biz
              Edinburgh, U K / Bitez, Turkey

              Comment


                #37
                I'm getting a bit of wierdness at the bottom of the home page in IE8 (I know, serves me right for using it.......).
                Attached Files

                Aquazuro - designer stainless steel accessories

                Comment


                  #38
                  Originally posted by Mark H View Post
                  I'm getting a bit of wierdness at the bottom of the home page in IE8 (I know, serves me right for using it.......).
                  Thought I'd add that this is the same 'black box' I am seeing hovering to the right of the standard search input field in IE7

                  Comment


                    #39
                    jeez, you guys are going to make me go get IE8 arent you?

                    *grumbles*

                    Comment


                      #40
                      Originally posted by NormanRouxel View Post
                      Gabe,

                      Minor cosmetic problem on skateasylum with some images being stretched (search for "long" as an example).
                      this is down to my ham handed attempt at resampling jpgs using the gd library, some rather brutal (lack of) maths was used to calculate the width of the images.

                      I have corrected a jquery issue, and it may have fixed some of the issues described.

                      Comment


                        #41
                        Us and the other 90% of humanity who'll be using it in a year's time.....

                        Aquazuro - designer stainless steel accessories

                        Comment


                          #42
                          i'm going to need help diagnosing these issues in explorer, can anyone suggest a decent firebug like tool?

                          Comment


                            #43
                            Originally posted by gabrielcrowe View Post
                            i'm going to need help diagnosing these issues in explorer, can anyone suggest a decent firebug like tool?
                            Firebug for Interner Explorer perhaps? MS are a pain in the arse, wish I could notify the other 5.5billion other human beings of this fact

                            Comment


                              #44
                              Originally posted by NormanRouxel
                              Here's the routine I wrote that takes a GD image
                              PHP Code:
                              // The file
                              $filename $_GET['filename'];

                              if(isset(
                              $_GET['height'])) {$newheight $_GET['height'];} else {$newheight 32;}
                              if(isset(
                              $_GET['width'])) {$newwidth $_GET['width'];} else {$newwidth 32;}
                              if(isset(
                              $_GET['quality'])) {$quality $_GET['quality'];} else {$quality 65;}

                              // Content type
                              header('Content-type: image/jpeg');
                              header("Last-Modified: " gmdate("D, d M Y H:i:s",mktime (0,0,0,1,1,2000)) . " GMT");  // Date in the past
                              header("Expires: Mon, 26 Jul 2040 05:00:00 GMT");    // In other words... never expire the image
                              header("Cache-Control: max-age=10000000, s-maxage=1000000, proxy-revalidate, must-revalidate");//Cache-Control header is 
                              /**/

                              // Get new dimensions
                              //$scale = fitandscaleimage($filename, $newwidth, $newheight, 255, 255, 255);
                              $scale fitandscaleimage($filename3232255255255);

                              // Output
                              imagejpeg($scalenull$quality); 
                              can i use it like this? i cant seem to get it mangling.

                              like this:

                              http://www.skateasylum.co.uk/actinet...-speed-ray.jpg

                              Comment


                                #45
                                ack! no probs, schoolboy error on my part, i forgot to
                                PHP Code:
                                $img ImageCreateFromJpeg($image); 

                                Comment

                                Working...
                                X