Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

Why isn't TimThumb working or write me a new script. WordPress

  • SOLVED

I've been trying to figure this out for two days and I'm about to throw my laptop against the wall now. Please help.

I installed the TimThumb script into the custom theme I am building here [[LINK href="http://seejanedirect.com"]]http://seejanedirect.com[[/LINK]]. I used to exact same code I used for another site (on a GoDaddy server). This website is located on a server maintained by The Prime Host. I've been emailing them the past 2 days to try and figure this out, assuming it must be a server side issue with no luck.

If you look at the website in question [[LINK href="http://seejanedirect.com"]]http://seejanedirect.com[[/LINK]], the text "The Guild" is actually the alt text for the TimThumb image.

I have set the permissions for the directory that the script is in and the cache to 755 (my server doesn't like 777, they said it has to be 755).

The images being pulled from wordpress are under the custom field "thumb".

Here's the code for the index page:


<?php get_header(); ?>


<div class="container">

<div class="content">

<div class="photofeature">
<?php if(have_posts()) : ?>
<?php query_posts("showposts=1&cat=64"); ?>
<?php while(have_posts()) : the_post(); ?>
<img src="<?php bloginfo('template_directory'); ?>/scripts/timthumb.php?src=<?php echo get_post_meta($post->ID, "thumb", $single = true); ?>&h=150&w=200&zc=1" alt="<?php the_title(); ?>" width="200" height="150" />

<?php endwhile; ?>
<?php endif; ?>
</div>


</div>


</div>


<div class="push"></div>

</div>
<?php get_footer(); ?>


<strong>What I need is either</strong>
A. Someone tell me why this is not working and how to fix it, or
B. Write me a new script/code

The plan was to use TimThumb to feature 5 images on the index page. All 5 images will be in separate categories (Categories: featured1, featured2, featured3, featured4, featured5) and will all be different sizes. The script needs to allow me to resize the image in the code (like TimThumb), be proportionate and crop if necessary to fit in whatever width x height dimensions of my choosing (like TimThumb), and use the custom fields (or Wordpress' "Featured Image" function). Once set-up, it needs to be REALLY easy for someone post an image to the spot, this is for a client. Basically I just need an alternative to TimThumb that will work on this server that seems to hate TimThumb.

Your help is very much appreciated! Thanks!

Answers (3)

2011-01-03

Pippin Williamson answers:

Use the WordPress Featured Image instead.

In your functions.php, setup support for the thumbnails and add additional sizes like this:


add_theme_support( 'post-thumbnails' );
set_post_thumbnail_size( 200, 150, true ); // default post thumbnail size

// if you need extra sizes, do this
add_image_size( 'featured-image', 659, 245, true ); // featured image


Then display the image in your template like this:


the_post_thumbnail(); // this will display the default image size
// or this will display the alternate size
the_post_thumbnail('featured-image');


Lindsey comments:

This worked to resize the image, but it doesn't fit the image into a specific size like TimThumb. If I set it to give post an image that is 200x200 (when the original is 500x700) it doesn't resize and crop the image to fit in the 200x200 spot. I need to fit perfectly, meaning I guess the code needs to crop the image when needed.


Pippin Williamson comments:

Try this:


// this is for the default size
set_post_thumbnail_size( 649, 245, false ); // set to the size you want

// or this is for other sizes
add_image_size( 'post-image', 200, 100, false ); // other size


Lindsey comments:

Nope, still doesn't "crop" the image to fit into the specified dimensions. It seems like it's only using the width dimension and then making the height whatever based on the new width. Also it's just squishing the image which is going to make loading times ridiculous when my client decides to upload giant images.


Pippin Williamson comments:

Install the Regenerate Thumbnails plugin. The squished images and such are caused by the image thumbnails not getting recreated.

Install the plugin then run it under the "Tools" menu.

See if that works.


Lindsey comments:

That definitely fixed the "squishing" issue, thanks. But the thumnails are still not generating in the proposed width by height dimensions. It's still just taking the width and resizing the whole image based on the width, not resizing and cropping.


Pippin Williamson comments:

Now you just need to change the "false" back to "true" and regenerate the thumbs again.


Lindsey comments:

YESSSSSS!!!!!!

Ok before I choose you as the winner of my heart and my money, if I create a bunch of these like so:

add_image_size( 'post-image1', 100, 300, true); // other size
add_image_size( 'post-image2', 200, 400, true); // other size
add_image_size( 'post-image3', 150, 200, true); // other size


and then insert them all using

<blockquote>the_post_thumbnail('post-image1');
the_post_thumbnail('post-image2');</blockquote>
ect

After I do that and regenerate the thumbnails, I can upload via featured image forever and never have to regenerate again, unless I change the image size, correct?


Pippin Williamson comments:

Correct :)


Lindsey comments:

You have no idea how relieved and insanely happy I am now. I knew there must have been a simple solution to all of this! THANK YOU THANK YOU THANK YOU!!!!

2011-01-03

Dan Cameron answers:

Change

<img src="<?php bloginfo('template_directory'); ?>/scripts/timthumb.php?src=<?php echo get_post_meta($post->ID, "thumb", $single = true); ?>&h=150&w=200&zc=1" alt="<?php the_title(); ?>" width="200" height="150" />

to:

<img src="<?php bloginfo('template_url'); ?>/scripts/timthumb.php?src=<?php echo get_post_meta(get_the_ID(), "thumb", $single = true); ?>&h=150&w=200&zc=1" alt="<?php the_title(); ?>" width="200" height="150" />


Lindsey comments:

Didn't work.

2011-01-03

Peter Michael answers:

Enable error_reporting and try to call http://seejanedirect.com/wp-content/themes/jane/scripts/timthumb.php?src=http://seejanedirect.com/wp-content/uploads/2011/01/theguild.png&h=150&w=200&zc=1 directly and see if it throws any error.


Lindsey comments:

I don't know what this means? Can you be more specific, how do I enable error_reporting? My site logs errors in error_log.

It hasn't logged anything recently though...


Peter Michael comments:

Open the file timthumb.php and add error_reporting(E_ALL); just before the line define ('CACHE_SIZE', 250);. Then call [[LINK href="http://seejanedirect.com/wp-content/themes/jane/scripts/timthumb.php?src=http://seejanedirect.com/wp-content/uploads/2011/01/theguild.png&h=150&w=200&zc=1"]]http://seejanedirect.com/wp-content/themes/jane/scripts/timthumb.php?src=http://seejanedirect.com/wp-content/uploads/2011/01/theguild.png&h=150&w=200&zc=1[[/LINK]] in your browser and see if there are any errors.


Lindsey comments:

I did that. When I go to that link it's just a blank page? Here's the TimThumb code:

<?php
/**
* TimThumb script created by Ben Gillbanks, originally created by Tim McDaniels and Darren Hoyt
* http://code.google.com/p/timthumb/
*
* GNU General Public License, version 2
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*
* Examples and documentation available on the project homepage
* http://www.binarymoon.co.uk/projects/timthumb/
*/
error_reporting(E_ALL);
define ('CACHE_SIZE', 250); // number of files to store before clearing cache
define ('CACHE_CLEAR', 5); // maximum number of files to delete on each cache clear
define ('CACHE_USE', TRUE); // use the cache files? (mostly for testing)
define ('VERSION', '1.19'); // version number (to force a cache refresh)
define ('DIRECTORY_CACHE', './cache'); // cache directory
define ('MAX_WIDTH', 1000); // maximum image width
define ('MAX_HEIGHT', 1000); // maximum image height
define ('ALLOW_EXTERNAL', FALSE); // allow external website (override security precaution)

// external domains that are allowed to be displayed on your website
$allowedSites = array (
'flickr.com',
'picasa.com',
'blogger.com',
'wordpress.com',
'img.youtube.com',
);

// STOP MODIFYING HERE!
// --------------------

// sort out image source
$src = get_request ('src', '');
if ($src == '' || strlen ($src) <= 3) {
display_error ('no image specified');
}

// clean params before use
$src = clean_source ($src);

// get mime type of src
$mime_type = mime_type ($src);

// check to see if this image is in the cache already
// if already cached then display the image and die
check_cache ($mime_type);

// cache doesn't exist and then process everything
// check to see if GD function exist
if (!function_exists ('imagecreatetruecolor')) {
display_error ('GD Library Error: imagecreatetruecolor does not exist - please contact your webhost and ask them to install the GD library');
}

if (function_exists ('imagefilter') && defined ('IMG_FILTER_NEGATE')) {
$imageFilters = array (
1 => array (IMG_FILTER_NEGATE, 0),
2 => array (IMG_FILTER_GRAYSCALE, 0),
3 => array (IMG_FILTER_BRIGHTNESS, 1),
4 => array (IMG_FILTER_CONTRAST, 1),
5 => array (IMG_FILTER_COLORIZE, 4),
6 => array (IMG_FILTER_EDGEDETECT, 0),
7 => array (IMG_FILTER_EMBOSS, 0),
8 => array (IMG_FILTER_GAUSSIAN_BLUR, 0),
9 => array (IMG_FILTER_SELECTIVE_BLUR, 0),
10 => array (IMG_FILTER_MEAN_REMOVAL, 0),
11 => array (IMG_FILTER_SMOOTH, 0),
);
}

// get standard input properties
$new_width = (int) abs (get_request ('w', 0));
$new_height = (int) abs (get_request ('h', 0));
$zoom_crop = (int) get_request ('zc', 1);
$quality = (int) abs (get_request ('q', 90));
$align = get_request ('a', 'c');
$filters = get_request ('f', '');
$sharpen = (bool) get_request ('s', 0);

// set default width and height if neither are set already
if ($new_width == 0 && $new_height == 0) {
$new_width = 100;
$new_height = 100;
}

// ensure size limits can not be abused
$new_width = min ($new_width, MAX_WIDTH);
$new_height = min ($new_height, MAX_HEIGHT);

// set memory limit to be able to have enough space to resize larger images
ini_set ('memory_limit', '50M');

if (file_exists ($src)) {

// open the existing image
$image = open_image ($mime_type, $src);
if ($image === false) {
display_error ('Unable to open image : ' . $src);
}

// Get original width and height
$width = imagesx ($image);
$height = imagesy ($image);

// generate new w/h if not provided
if ($new_width && !$new_height) {

$new_height = floor ($height * ($new_width / $width));

} else if ($new_height && !$new_width) {

$new_width = floor ($width * ($new_height / $height));

}

// create a new true color image
$canvas = imagecreatetruecolor ($new_width, $new_height);
imagealphablending ($canvas, false);

// Create a new transparent color for image
$color = imagecolorallocatealpha ($canvas, 0, 0, 0, 127);

// Completely fill the background of the new image with allocated color.
imagefill ($canvas, 0, 0, $color);

// Restore transparency blending
imagesavealpha ($canvas, true);

if ($zoom_crop) {

$src_x = $src_y = 0;
$src_w = $width;
$src_h = $height;

$cmp_x = $width / $new_width;
$cmp_y = $height / $new_height;

// calculate x or y coordinate and width or height of source
if ($cmp_x > $cmp_y) {

$src_w = round (($width / $cmp_x * $cmp_y));
$src_x = round (($width - ($width / $cmp_x * $cmp_y)) / 2);

} else if ($cmp_y > $cmp_x) {

$src_h = round (($height / $cmp_y * $cmp_x));
$src_y = round (($height - ($height / $cmp_y * $cmp_x)) / 2);

}

// positional cropping!
switch ($align) {
case 't':
case 'tl':
case 'lr':
case 'tr':
case 'rt':
$src_y = 0;
break;

case 'b':
case 'bl':
case 'lb':
case 'br':
case 'rb':
$src_y = $height - $src_h;
break;

case 'l':
case 'tl':
case 'lt':
case 'bl':
case 'lb':
$src_x = 0;
break;

case 'r':
case 'tr':
case 'rt':
case 'br':
case 'rb':
$src_x = $width - $new_width;
$src_x = $width - $src_w;
break;

default:
break;
}

imagecopyresampled ($canvas, $image, 0, 0, $src_x, $src_y, $new_width, $new_height, $src_w, $src_h);

} else {

// copy and resize part of an image with resampling
imagecopyresampled ($canvas, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);

}

if ($filters != '' && function_exists ('imagefilter') && defined ('IMG_FILTER_NEGATE')) {
// apply filters to image
$filterList = explode ('|', $filters);
foreach ($filterList as $fl) {

$filterSettings = explode (',', $fl);
if (isset ($imageFilters[$filterSettings[0]])) {

for ($i = 0; $i < 4; $i ++) {
if (!isset ($filterSettings[$i])) {
$filterSettings[$i] = null;
} else {
$filterSettings[$i] = (int) $filterSettings[$i];
}
}

switch ($imageFilters[$filterSettings[0]][1]) {

case 1:

imagefilter ($canvas, $imageFilters[$filterSettings[0]][0], $filterSettings[1]);
break;

case 2:

imagefilter ($canvas, $imageFilters[$filterSettings[0]][0], $filterSettings[1], $filterSettings[2]);
break;

case 3:

imagefilter ($canvas, $imageFilters[$filterSettings[0]][0], $filterSettings[1], $filterSettings[2], $filterSettings[3]);
break;

case 4:

imagefilter ($canvas, $imageFilters[$filterSettings[0]][0], $filterSettings[1], $filterSettings[2], $filterSettings[3], $filterSettings[4]);
break;

default:

imagefilter ($canvas, $imageFilters[$filterSettings[0]][0]);
break;

}
}
}
}

// sharpen image
if ($sharpen && function_exists ('imageconvolution')) {

$sharpenMatrix = array (
array (-1,-1,-1),
array (-1,16,-1),
array (-1,-1,-1),
);

$divisor = 8;
$offset = 0;

imageconvolution ($canvas, $sharpenMatrix, $divisor, $offset);

}

// output image to browser based on mime type
show_image ($mime_type, $canvas);

// remove image from memory
imagedestroy ($canvas);

// if not in cache then clear some space and generate a new file
clean_cache ();

die ();

} else {

if (strlen ($src)) {
display_error ('image ' . $src . ' not found');
} else {
display_error ('no source specified');
}

}


/**
*
* @global <type> $quality
* @param <type> $mime_type
* @param <type> $image_resized
*/
function show_image ($mime_type, $image_resized) {

global $quality;

// check to see if we can write to the cache directory
$cache_file = get_cache_file ($mime_type);

if (stristr ($mime_type, 'jpeg')) {
imagejpeg ($image_resized, $cache_file, $quality);
} else {
imagepng ($image_resized, $cache_file, floor ($quality * 0.09));
}

show_cache_file ($mime_type);

}


/**
*
* @param <type> $property
* @param <type> $default
* @return <type>
*/
function get_request ($property, $default = 0) {

if (isset ($_GET[$property])) {

return $_GET[$property];

} else {

return $default;

}

}


/**
*
* @param <type> $mime_type
* @param <type> $src
* @return <type>
*/
function open_image ($mime_type, $src) {

$mime_type = strtolower ($mime_type);

if (stristr ($mime_type, 'gif')) {

$image = imagecreatefromgif ($src);

} elseif (stristr ($mime_type, 'jpeg')) {

$image = imagecreatefromjpeg ($src);

} elseif (stristr ($mime_type, 'png')) {

$image = imagecreatefrompng ($src);

}

return $image;

}

/**
* clean out old files from the cache
* you can change the number of files to store and to delete per loop in the defines at the top of the code
*
* @return <type>
*/
function clean_cache () {

// add an escape
// Reduces the amount of cache clearing to save some processor speed
if (rand (1, 100) > 10) {
return true;
}

flush ();

$files = glob (DIRECTORY_CACHE . '/*', GLOB_BRACE);

if (count ($files) > CACHE_SIZE) {

$yesterday = time () - (24 * 60 * 60);

usort ($files, 'filemtime_compare');
$i = 0;

foreach ($files as $file) {

$i ++;

if ($i >= CACHE_CLEAR) {
return;
}

if (@filemtime ($file) > $yesterday) {
return;
}

if (file_exists ($file)) {
unlink ($file);
}

}

}

}


/**
* compare the file time of two files
*
* @param <type> $a
* @param <type> $b
* @return <type>
*/
function filemtime_compare ($a, $b) {

$break = explode ('/', $_SERVER['SCRIPT_FILENAME']);
$filename = $break[count ($break) - 1];
$filepath = str_replace ($filename, '', $_SERVER['SCRIPT_FILENAME']);

$file_a = realpath ($filepath . $a);
$file_b = realpath ($filepath . $b);

return filemtime ($file_a) - filemtime ($file_b);

}


/**
* determine the file mime type
*
* @param <type> $file
* @return <type>
*/
function mime_type ($file) {

$file_infos = getimagesize ($file);
$mime_type = $file_infos['mime'];

// use mime_type to determine mime type
if (!preg_match ("/jpg|jpeg|gif|png/i", $mime_type)) {
display_error ('Invalid src mime type: ' . $mime_type);
}

return $mime_type;

}


/**
*
* @param <type> $mime_type
*/
function check_cache ($mime_type) {

if (CACHE_USE) {

if (!show_cache_file ($mime_type)) {
// make sure cache dir exists
if (!file_exists (DIRECTORY_CACHE)) {
// give 777 permissions so that developer can overwrite
// files created by web server user
mkdir (DIRECTORY_CACHE);
chmod (DIRECTORY_CACHE, 0777);
}
}

}

}


/**
*
* @param <type> $mime_type
* @return <type>
*/
function show_cache_file ($mime_type) {

// use browser cache if available to speed up page load
if (isset ($_SERVER['HTTP_IF_MODIFIED_SINCE'])) {
if (strtotime ($_SERVER['HTTP_IF_MODIFIED_SINCE']) < strtotime('now')) {
header ('HTTP/1.1 304 Not Modified');
die ();
}
}

$cache_file = get_cache_file ($mime_type);

if (file_exists ($cache_file)) {

// change the modified headers
$gmdate_expires = gmdate ('D, d M Y H:i:s', strtotime ('now +10 days')) . ' GMT';
$gmdate_modified = gmdate ('D, d M Y H:i:s') . ' GMT';

// send content headers then display image
header ('Content-Type: ' . $mime_type);
header ('Accept-Ranges: bytes');
header ('Last-Modified: ' . $gmdate_modified);
header ('Content-Length: ' . filesize ($cache_file));
header ('Cache-Control: max-age=864000, must-revalidate');
header ('Expires: ' . $gmdate_expires);

if (!@readfile ($cache_file)) {
$content = file_get_contents ($cache_file);
if ($content != FALSE) {
echo $content;
} else {
display_error ('cache file could not be loaded');
}
}

die ();

}

return FALSE;

}


/**
*
* @staticvar string $cache_file
* @param <type> $mime_type
* @return string
*/
function get_cache_file ($mime_type) {

static $cache_file;
global $src;

$file_type = '.png';

if (stristr ($mime_type, 'jpeg')) {
$file_type = '.jpg';
}

if (!$cache_file) {
// filemtime is used to make sure updated files get recached
$cache_file = DIRECTORY_CACHE . '/' . md5 ($_SERVER ['QUERY_STRING'] . VERSION . filemtime ($src)) . $file_type;
}

return $cache_file;

}


/**
*
* @global array $allowedSites
* @param string $src
* @return string
*/
function check_external ($src) {

global $allowedSites;

if (stristr ($src, 'http://') !== false) {

$url_info = parse_url ($src);

// convert youtube video urls
// need to tidy up the code

if ($url_info['host'] == 'www.youtube.com' || $url_info['host'] == 'youtube.com') {
parse_str ($url_info['query']);

if (isset ($v)) {
$src = 'http://img.youtube.com/vi/' . $v . '/0.jpg';
$url_info['host'] = 'img.youtube.com';
}
}

// check allowed sites (if required)
if (ALLOW_EXTERNAL) {

$isAllowedSite = true;

} else {

$isAllowedSite = false;
foreach ($allowedSites as $site) {
//$site = '/' . addslashes ($site) . '/';
if (stristr($url_info['host'], $site) !== false) {
$isAllowedSite = true;
}
}

}

// if allowed
if ($isAllowedSite) {

$fileDetails = pathinfo ($src);
$ext = strtolower ($fileDetails['extension']);

$filename = md5 ($src);
$local_filepath = DIRECTORY_CACHE . '/' . $filename . '.' . $ext;

if (!file_exists ($local_filepath)) {

if (function_exists ('curl_init')) {

$fh = fopen ($local_filepath, 'w');
$ch = curl_init ($src);

curl_setopt ($ch, CURLOPT_TIMEOUT, 15);
curl_setopt ($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; rv:1.7.3) Gecko/20041001 Firefox/0.10.1");
curl_setopt ($ch, CURLOPT_URL, $src);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HEADER, 0);
curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt ($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko/20041107 Firefox/1.0');
curl_setopt ($ch, CURLOPT_FILE, $fh);

if (curl_exec ($ch) === FALSE) {
if (file_exists ($local_filepath)) {
unlink ($local_filepath);
}
display_error ('error reading file ' . $src . ' from remote host: ' . curl_error($ch));
}

curl_close ($ch);
fclose ($fh);

} else {

if (!$img = file_get_contents($src)) {
display_error ('remote file for ' . $src . ' can not be accessed. It is likely that the file permissions are restricted');
}

if (file_put_contents ($local_filepath, $img) == FALSE) {
display_error ('error writing temporary file');
}

}

if (!file_exists ($local_filepath)) {
display_error ('local file for ' . $src . ' can not be created');
}

}

$src = $local_filepath;

} else {

display_error ('remote host "' . $url_info['host'] . '" not allowed');

}

}

return $src;

}


/**
* tidy up the image source url
*
* @param <type> $src
* @return string
*/
function clean_source ($src) {

$host = str_replace ('www.', '', $_SERVER['HTTP_HOST']);
$regex = "/^((ht|f)tp(s|):\/\/)(www\.|)" . $host . "/i";

$src = preg_replace ($regex, '', $src);
$src = strip_tags ($src);
$src = str_replace (' ', '%20', $src);
$src = check_external ($src);

// remove slash from start of string
if (strpos ($src, '/') === 0) {
$src = substr ($src, -(strlen ($src) - 1));
}

// don't allow users the ability to use '../'
// in order to gain access to files below document root
$src = preg_replace ("/\.\.+\//", "", $src);

// get path to image on file system
$src = get_document_root ($src) . '/' . $src;

return $src;

}


/**
*
* @param <type> $src
* @return string
*/
function get_document_root ($src) {

// check for unix servers
if (file_exists ($_SERVER['DOCUMENT_ROOT'] . '/' . $src)) {
return $_SERVER['DOCUMENT_ROOT'];
}

// check from script filename (to get all directories to timthumb location)
$parts = array_diff (explode ('/', $_SERVER['SCRIPT_FILENAME']), explode ('/', $_SERVER['DOCUMENT_ROOT']));
$path = $_SERVER['DOCUMENT_ROOT'];
foreach ($parts as $part) {
$path .= '/' . $part;
if (file_exists ($path . '/' . $src)) {
return $path;
}
}

// the relative paths below are useful if timthumb is moved outside of document root
// specifically if installed in wordpress themes like mimbo pro:
// /wp-content/themes/mimbopro/scripts/timthumb.php
$paths = array (
"./",
"../",
"../../",
"../../../",
"../../../../",
"../../../../../"
);

foreach ($paths as $path) {
if (file_exists ($path . $src)) {
return $path;
}
}

// special check for microsoft servers
if (!isset ($_SERVER['DOCUMENT_ROOT'])) {
$path = str_replace ("/", "\\", $_SERVER['ORIG_PATH_INFO']);
$path = str_replace ($path, '', $_SERVER['SCRIPT_FILENAME']);

if (file_exists ($path . '/' . $src)) {
return $path;
}
}

display_error ('file not found ' . $src, ENT_QUOTES);

}


/**
* generic error message
*
* @param <type> $errorString
*/
function display_error ($errorString = '') {

header ('HTTP/1.1 400 Bad Request');
echo '<pre>' . htmlentities ($errorString);
echo '<br />Query String : ' . htmlentities ($_SERVER['QUERY_STRING']);
echo '<br />TimThumb version : ' . VERSION . '</pre>';
die ();

}


Peter Michael comments:

You should also set define ('ALLOW_EXTERNAL', TRUE); and add your domain to the $allowedSites array.

"<em>my server doesn't like 777, they said it has to be 755</em>": documentation says "In addition you should create two directories for saving thumbnails. These directories should be in the same directory as the TimThumb script. They should be called cache and temp and should both have 777 permissions."


Lindsey comments:

Did that, still doesn't work. :(


Peter Michael comments:

Switch to [[LINK href="http://phpthumb.gxdlabs.com/"]]http://phpthumb.gxdlabs.com/[[/LINK]]

;-)