FIXED!
Thanks again for your help. The solution was to find my PHP.INI file and increase the memory allocation from 8M to 12M.
For anyone else, that encountered this problem here's my solution. Remember I'm not an expert and only fixed it through trial and error. If anyone sees any problems with this solution, please let me know.
I found my php.ini file by creating and uploading a file called show_php_info.php. This file contains the one simple command:
(); ?>
Upload this file to your site and then open up the file. If you upload it to the root of your website, you would just open the url:
http:// yourwebsite.com/show_php_info.php
You'll get a nice long report showing all the settings on your web server. I found out my web host is using PHP version 4.3.10 by doing this. Do a search for "php.ini" and you will find the folder on your server where this file is stored.
Fire up your ftp application again and change to the folder where the php.ini file is.
Download php.ini to your local machine.
Use a text editor to edit the php.ini (I am a huge fan of Notepad++, a free text editor).
Search for the text "memory_limit". In my case I found:
memory_limit = 8M ;Maximum amount of memory a script my consume (8MB)
I changed this to:
memory_limit = 12M ;Maximum amount of memory a script my consume (8MB)
I uploaded my updated php.ini back up to the server and overwrote the existing file.
And that's it... I thought I would have to figure out how to restart the server (I doubt I can do it). But it fixed the problem immediately.
Good luck, let me know if it works for you!