bplex, I am starting to think that your GD library suggestion is the issue. I went to add my user profile picture and this error appeared.

Fatal error: Call to undefined function imagecreatefromjpeg() in /home/ettv1234/public_html/include/functions.php on line 158

and I looked it up online and found a reference to the issue being related to the GD Library. Here is the site I found: Create Image - Imagecreate - Create Image PHP

I then saw a link to the GD Library in this article, which identified it as this:

The GD library is used for dynamic image creation. From PHP we use with the GD library to create GIF, PNG or JPG images instantly from our code. This allows us to do things such as create charts on the fly, created an an anti-robot security image, create thumbnail images, or even build images from other images.
If you are unsure if you have GD library, you can run phpinfo() to check that GD Support is enabled. If you don't have it, you can download it for free.

Thats two issues now for GD Library.----Allen