Originally posted by gabrielcrowe
View Post
Announcement
Collapse
No announcement yet.
extending the search, web 2.0 style
Collapse
X
-
Originally posted by gabrielcrowe View PostFirst successful site integration:
http://www.skateasylum.co.uk/
IE7 bug:
Code:Line: 51 Char: 50 Error: 'null' is null or not an object Code: 0 URL: http://www.skateasylum.co.uk
Comment
-
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
-
Originally posted by NormanRouxel View PostGabe,
Minor cosmetic problem on skateasylum with some images being stretched (search for "long" as an example).
I have corrected a jquery issue, and it may have fixed some of the issues described.
Comment
-
Originally posted by gabrielcrowe View Posti'm going to need help diagnosing these issues in explorer, can anyone suggest a decent firebug like tool?
Comment
-
Originally posted by NormanRouxelHere's the routine I wrote that takes a GD imagePHP 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($filename, 32, 32, 255, 255, 255);
// Output
imagejpeg($scale, null, $quality);
like this:
http://www.skateasylum.co.uk/actinet...-speed-ray.jpg
Comment
Comment