You are getting error
""""""""""""""""""""""""
Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to
allocate 9792 bytes) in /home/frich/public_html/creation/systemc/sMain/upload_image.php on line 77
""""""""""""""""""""""""
It shows that either you are using a sheared hosting because your server memory_limit is 32 MB
You need to increase your memory limit as said above by "Pekka" and "MartyIX"
but how you do this there are three ways of doing so.
1st. ask your hosting company to increase your memory limit,
they will increase it upto 48MB max that is the restriction of any hosting company for sheared hosting acount.
2nd. upload a php.ini file
with written "memory_limit = 100M and max_memory = 100M"
you can change 100M to any size that you want but that can be in limit so that it will not use extra resources of server else your account may be suspended by your hosting company
LIMITATION: this option may not work properly on every hosting because some times this code may be blocked by admin so that server resources may be consumed in LIMIT.
3rd upload a ".htaccess"
written inside it "php_value memory_limit 32M"
or
by default it is available in your hosting web directory then you can first download it as it is having other settings too.
download it open it with notepad and write "php_value memory_limit 32M"
and
4th option add a PHP code your page
"ini_set('memory_limit', '32M');" (Not tested yet by me, may it work fine)
Thanks and Regards........