2nd time posting but i wasnt registered the 1st time.
We have a ebay clone web site that is working fine but i want to have the image thumbnails larger in size
I have been looking at the files for 2 days now and cant find which file to edit.
I will give u access to the site if you can PLEASE help and show me the correct file.
Thanks so Much
Shade
[email protected]
It’s the file behind Door #2.
How is anyone supposed to know what the correct file is if you don’t post anything to choose from 
Someplace in the code it’s generating an img tag… just do a search for "<img ". You’ll probably get a ton of results, but it will be one of them. Look in the CSS file (assuming there is one), the thumbnail size could be defined there with width and height properties.
im sorry 
there are many files
like i said ive been looking for 2 days now.
the program is myphpauctions
its the ebay clone 2010.
if you tell me what to post i will be more than happy too
Thanks for taking the time to look at my post so fast
Shade
website address is rightwayauctions.com if that helps
thanks again
Shade
<?php
#################################################################
## MyPHPAuction 2009 ##
##-------------------------------------------------------------##
## Copyright �2009 MyPHPAuction. All rights reserved. ##
##-------------------------------------------------------------##
#################################################################
include_once('includes/class_image.php');
$image = new image();
(string) $pic = null;
$pic = eregi_replace(' ','%20',$_GET['pic']);
$thumbnail_width = abs(intval($_GET['w']));
$is_square = ($_GET['sq']=='Y')? true : false;
$is_border = ($_GET['b']=='Y') ? true : false;
(array) $info = null;
$info = @getimagesize($pic);
list($im_width, $im_height, $im_type, $im_attr) = $info;
if (empty($info)||$im_type>3) $pic = 'images/broken.gif';
$pic_no_spaces = eregi_replace('%20','',$pic);
$pic_cached = eregi_replace($image->image_basedir,'',$pic_no_spaces);
if ($_GET['check']=='phpinfo')
{
phpinfo();
}
else
{
$allowed_extension = $image->allowed_extension($pic);
if (isset($pic) && $thumbnail_width>0 && $allowed_extension)
{
/* check to see if file already exists in cache, and output it with no processing if it does */
$cached_filename = $image->set_cache_filename($pic_cached, $thumbnail_width, $is_square, $is_border);
if (is_file($cached_filename)) /* display cached filename */
{
header('Content-type: image/jpeg');
header('Location: ' . $cached_filename . '?' . rand(2,9999));
}
else /* create new thumbnail, and add it into the cache directory as well */
{
header('Content-type: image/jpeg');
$cache_output = $image->set_cache_filename($pic_cached, $thumbnail_width, $is_square, $is_border);
$image->generate_thumb($pic, $thumbnail_width, $is_square, $is_border, $cache_output);
header('Location: ' . $cache_output . '?' . rand(2,9999));
}
}
else if (!isset($pic))
{
echo "ERROR: No image submitted";
}
else if ($thumbnail_width<=0)
{
echo "ERROR: Invalid resizing option";
}
else if (!$allowed_extension)
{
echo "ERROR: Prohibited file extension";
}
Looks like its setting the value dynamically and then pushing the image to the browser instead of using it in a template - at least from what I can gather from this one section of code.
Have you tried overwriting $thumbnail_width?
[php]
//$thumbnail_width = abs(intval($_GET[‘w’]));
$thumbnail_width = “100”;
[/php]
Might not work but it’s worth a shot, otherwise does the original developer offer support?
Thanks Ill try that
No… Emailed them 3 days ago ;(
Got a automated BS responce 
Thanks for taking the time to look at this
Shade
If you ant ill give u access to the site and u can look around but if u do find it…I sure would like to know where it is so I can do it myself next time.
Please let me know
Thanks
Shade