Henri,
Your code (taken from first post);
<?php
//Defining Variables
$supported_type1 = ".gif";
$supported_type2 = ".jpeg";
$website_url = "http://novaz3ro.com/";
$absolute_path = "/"; //path to where images are uploaded
$sizelimit = "no"; //no size limit for the image(s)
$check1 = "image/gif"; //GIF file type.
$check2 = "image/jpeg"; //Jpeg file type.
Your problem is most likely within your $absolute_path variable.
Assuming that you are working on a *nix server, the image uploaded initially gets uploaded to (unless specified otherwise) php's temp folder (which you may discover by doing a phpinfo().
So in your script you then ask php to copy the image:
@copy($uploaded_image, "$absolute_path/$uploaded_image_name")
which means that php will attempt to copy the image to //$uploaded_image_name
Now forgive me if you've defined something elsewhere, but if you're on *nix, you (and httpd) simply don't have permission to write a file to the very root of the server drive. This would be outside of your own web treee, and even if the file did get copied successfully (which I seriously doubt) you certainly wouldn't find it within your web tree via ftp.
$absolute_path should be defined as something like (and this is a path on my own server) "/home/sites/siteXX/web/uploads" and then you'll need an additional variable to define the web version of that path (ie /uploads).
You've got to remember that php runs, not as your username, but as the user httpd which means it can read almost any folder with suitable permissions on the server. You via ftp on the other hand, will be restricted to viewing YOUR owned files on the server
I would hazard a guess that the file is indeed getting uploaded but the file cannot be saved to the location you are specifying. Hense why the output from my previous post is so important. If you receive an output (and it will look something like this:
ORIGINAL IMAGE
/tmp/phpWmoSW4
Friend.jpg
62050 bytes
image/pjpeg
because it takes that information from the temp file. If your temp file exists, the problem lies within the rest of the code handling that image.