I want the theme 'Red Carpet' soooo badly! I mean i have it but the images wont work! check it out (if you know how to fix i will pay you!) www.hollywood-uncovered.com So yeah, also if anyone can take the them and make the images come up without phpThumb (using timthumb or something) that would be great! Or is there anymore like it? Please help a fellow blogger!
Does your host not have phpThumb installed? I only ask as the full url to the image (http://hollywood-uncovered.com/wp-content/themes/redcarpet/thumbs/2.jpg) is correct but the call to phpThumb looks like its passing the image as a parameter and expecting the output to be streamed to the browser (http://hollywood-uncovered.com/wp-c...hemes/redcarpet/thumbs/2.jpg&w=308&h=308&q=95). Happy to help, if I can. Phil
Since it's a premium theme, and we know you won't use a nulled copy, you can simply ask for support from the theme author's website ...
Well I host with godaddy. So do you guys think maybe I can change the phpthumb to something like TimThumb? If I can be converted? Do any of you guys wanna try it?
If you're able to edit the php for the template, I've got this working on Godaddy (All of this depends on your confidence levels with php). Create a new document called imageresize.php and paste the following code into it : <?php[INDENT]// The file $filename= $_GET['image'];[/INDENT] [INDENT] [/INDENT] [INDENT]// Set a maximum height and width $width = 100; $height = 100; // Content type header('Content-Type: image/jpeg'); // Get new dimensions list($width_orig, $height_orig) = getimagesize($filename); $ratio_orig = $width_orig/$height_orig; if ($width/$height > $ratio_orig) { $width = $height*$ratio_orig; } else { $height = $width/$ratio_orig; } // Resample $image_p = imagecreatetruecolor($width, $height); $image = imagecreatefromjpeg($filename); imagecopyresampled($image_p, $image, 0, 0, 0, 0, $width, $height, $width_orig, $height_orig); // Output imagejpeg($image_p, null, 100);[/INDENT] ?> Code (markup): You can then process the image like this : <img src="imageresize.php?image=image url> You could improve image resize by adding in parameters for width and height. This works on Godaddy as I'm using on sites hosted there to generate thumbnails from various image sources. Hope that helps Phil