Life of a part time web master

OK, after googling whenever I have time, finally tracked the problem to apache limiting maximum upload filesize. I had to edit the hidden file .htaccess for drupal to instruct Apache to let large uploads thru:

<Files *.php>
LimitRequestBody 8388608
RequestHeader unset If-Modified-Since
</Files>

Now image upload is working again!