Q: "Off-server thumbnailing is not allowed" -- how do I enable it?
A: By default, phpThumb() only makes thumbnails for the same
domain that it is running on. To allow it to make thumbnails
for a limited number of other domains, add them
(in phpThumb.config.php) like this:
$PHPTHUMB_CONFIG[’nohotlink_valid_domains’] = array(
@$_SERVER[’HTTP_HOST’], ’example.com’, ’www.example.com’,
’subdomain.example.net’, ’example.org’);
To disable off-server thumbnail blocking, just set:
$PHPTHUMB_CONFIG[’nohotlink_enabled’] = false;