Well, nevermind.. here's your problem. When trying to access
http://www.envy-uk.co.uk/vbgarage.ph...idth=175&id=20 directly, I recieved:
PHP Code:
Warning: imagecreatetruecolor(): requires GD 2.0 or later in /homepages/33/d84375326/htdocs/envy/vbgarage.php on line 299
Warning: imagecopyresized(): supplied argument is not a valid Image resource in /homepages/33/d84375326/htdocs/envy/vbgarage.php on line 301
Warning: imagejpeg(): supplied argument is not a valid Image resource in /homepages/33/d84375326/htdocs/envy/vbgarage.php on line 302
Warning: imagedestroy(): supplied argument is not a valid Image resource in /homepages/33/d84375326/htdocs/envy/vbgarage.php on line 305
So, apparently they haven't upgraded. Or else, they haven't recompiled.
Unfortunately, I have a meeting to attend, so I probably won't be able to assist any further until around 5:30PM EST.
Here's the code for the filename, though:
In
vbgarage.php:
FIND:
PHP Code:
if ($_REQUEST['do'] == 'popup')
{
globalize($_REQUEST, array('image', 'id' => INT));
Add BELOW:
PHP Code:
$result_data = $DB_site->query("
SELECT * FROM " . TABLE_PREFIX . "vbgarage_images WHERE vbgarageid = $id
");
$data = $DB_site->fetch_Array($result_data);
Now, you can call the filename with [high]$data[name][/high]. Good luck!