I just uploaded a new theme to my site called arthemia. My host doesn't support php 5 so it can't use the timthumb.php script. The guy who made it told me this "Your webhost doesn't support PHP 5. this means you can't use the timthumb.php script. you have to edit every php file and rip off any timthumb.php line and modify it to directly point to the image file." I found two sets of timthumb.php within all the php files and it's located in index.php. Here is the code.
<img src="<?php echo bloginfo('template_url'); ?>/scripts/timthumb.php?src=<?php echo get_option('home'); ?>/<?php
$values = get_post_custom_values("Image"); echo $values[0]; ?>&w=300&h=300&zc=1&q=100"
alt="<?php the_title(); ?>" class="left" width="300px" height="300px" /></a>
If my images are located in wp-content/themes/arthemia/images how would i modify that code to directly point to the image file? If you need mroe info on helping me solve this problem let me know.