coppermine-gallery.com/forum

Support => cpg1.4.x Support => Older/other versions => cpg1.4 upload => Topic started by: kevertje on March 26, 2006, 06:27:08 PM

Title: Can't upload pictures... Please help :)
Post by: kevertje on March 26, 2006, 06:27:08 PM
Hi,

I'm using coppermine 1.4.2 on a pre-installed server of a hosting-company.

First of all. Last week they created my account on a server in Orlando. I installed the Coppermine application (just click in their cPanel software installation) and everything worked.
They moved me to a different server in Tampa and since I was a new customer for this hosting-company it didn't matter much so I decided to install coppermine again (had nothing uploaded so far, so no issue for me)
Everything works but when I try to upload images on this server I won't see the image.
Please see an example attached (below)


I tried to deinstall coppermine but it won't work. Difficult thing for me on this forum is that the provider told me they can't give me support on the application but debugging is difficult if they have a 'just click here' list of applications you can install.

Perl version 5.8.6
Php Version 4.4.2
Mysql 4.0.25-standard

(https://coppermine-gallery.com/forum/proxy.php?request=http%3A%2F%2Fwww2.kevertje.nl%2Fcoppermine.jpg&hash=80f09c2d4c3ac775f45bb33401b05fbcfb3cf4a7)
Title: Re: Coppermine won't show pictures
Post by: Nibbler on March 26, 2006, 06:36:06 PM
http://coppermine-gallery.net/demo/cpg14x/docs/index.htm#upload_trouble
Title: Re: Coppermine won't show pictures
Post by: kevertje on March 26, 2006, 06:41:52 PM
Quote from: Nibbler on March 26, 2006, 06:36:06 PM
http://coppermine-gallery.net/demo/cpg14x/docs/index.htm#upload_trouble

Thanks, but I don't get a real fault notification.
It only says

The previous file couldn't upload
you uploaded all files succesfully

( I translated the dutch notification)

and I made a guest account with password guest

www.kevertje.net/coppermine/

(test album = test)
Title: Re: Coppermine won't show pictures
Post by: Nibbler on March 26, 2006, 06:46:10 PM
If you follow the steps in that link it will give you a real error message.
Title: Re: Coppermine won't show pictures
Post by: kevertje on March 27, 2006, 08:24:38 AM
Quote from: Nibbler on March 26, 2006, 06:46:10 PM
If you follow the steps in that link it will give you a real error message.

Critical error
The file 'albums/userpics/10001/cpg.gif' can't be inserted in the album

Unable to create thumbnail or reduced size image.


USER:
------------------
Array
(
    [ID] => 9529e677eea5ae0e7374c1d4a7a95cd4
    [am] => 1
    [lang] => english
)

==========================
USER DATA:
------------------
Array
(
    [user_id] => 1
    [user_name] => admin
    [groups] => Array
        (
           
Title: Re: Can't upload pictures... Please help :)
Post by: kevertje on March 27, 2006, 09:06:47 PM
It's still strange since I can't see the picture in the album

www.kevertje.net/pictures/

but when I put the URL directly into the browser the pictures is viewable

http://www.kevertje.net/pictures/albums/userpics/10001/miriam-joost-kim-hans-nov2001.jpg

I tried again but still:

The file 'albums/userpics/10001/left-picture.jpg' can't be inserted in the album

Unable to create thumbnail or reduced size image.

File: /home/kevertje/public_html/pictures/db_input.php - Line: 391
Title: Re: Can't upload pictures... Please help :)
Post by: Joachim Müller on March 27, 2006, 11:22:15 PM
what did you set for "method for resizing images" in coppermine's config? If you have set ImageMagick, try GD2.
Title: Re: Can't upload pictures... Please help :)
Post by: kegobeer on March 27, 2006, 11:40:07 PM
Have you tried this?

http://forum.coppermine-gallery.net/index.php?topic=23342.0
Title: Re: Can't upload pictures... Please help :)
Post by: kevertje on March 28, 2006, 08:38:41 AM
Quote from: kegobeer on March 27, 2006, 11:40:07 PM
Have you tried this?

http://forum.coppermine-gallery.net/index.php?topic=23342.0

Thanks, I just tried it and changed the file on 2 places but no luck :()


The file 'albums/userpics/10001/left-picture.jpg' can't be inserted in the album

Unable to create thumbnail or reduced size image.

File: /home/kevertje/public_html/pictures/db_input.php - Line:391



---------
a part of the file

        case "gd1" :
            if (!function_exists('imagecreatefromjpeg')) {
                cpg_die(CRITICAL_ERROR, 'PHP running on your server does not support the GD image library, check with your webhost if ImageMagick is installed', __FILE__, __LINE__);
            }
            if ($imginfo[2] == GIS_JPG)
                $src_img = imagecreatefromjpeg($src_file);
            else
                $src_img = imagecreatefrompng($src_file);
            if (!$src_img) {
                $ERROR = $lang_errors['invalid_image'];
                return false;
            }
            $dst_img = imagecreate($destWidth, $destHeight);
            imagecopyresized($dst_img, $src_img, 0, 0, 0, 0, $destWidth, (int)$destHeight, $srcWidth,$srcHeight);
$fh=fopen($dest_file,'w');
fclose($fh);
imagejpeg($dst_img, $dest_file, $CONFIG['jpeg_qual']);
            imagedestroy($src_img);
            imagedestroy($dst_img);
            break;

    case "gd2" :
            if (!function_exists('imagecreatefromjpeg')) {
                cpg_die(CRITICAL_ERROR, 'PHP running on your server does not support the GD image library, check with your webhost if ImageMagick is installed', __FILE__, __LINE__);
            }
            if (!function_exists('imagecreatetruecolor')) {
                cpg_die(CRITICAL_ERROR, 'PHP running on your server does not support GD version 2.x, please switch to GD version 1.x on the admin page', __FILE__, __LINE__);
            }
            if ($imginfo[2] == GIS_GIF && $CONFIG['GIF_support'] == 1)
                $src_img = imagecreatefromgif($src_file);
            elseif ($imginfo[2] == GIS_JPG)
                $src_img = imagecreatefromjpeg($src_file);
            else
                $src_img = imagecreatefrompng($src_file);
            if (!$src_img) {
                $ERROR = $lang_errors['invalid_image'];
                return false;
            }
            if ($imginfo[2] == GIS_GIF)
              $dst_img = imagecreate($destWidth, $destHeight);
            else
              $dst_img = imagecreatetruecolor($destWidth, $destHeight);
            imagecopyresampled($dst_img, $src_img, 0, 0, 0, 0, $destWidth, (int)$destHeight, $srcWidth,$srcHeight);
$fh=fopen($dest_file,'w');
fclose($fh);
imagejpeg($dst_img, $dest_file, $CONFIG['jpeg_qual']);
            imagedestroy($src_img);
            imagedestroy($dst_img);
            break;
    }
Title: Re: Can't upload pictures... Please help :)
Post by: kevertje on March 28, 2006, 09:32:51 AM
Well....

reading this topic:

http://forum.coppermine-gallery.net/index.php?topic=28063.0

I changed the settings to GD2 instead of imageblabla.

so it's working now !

thanks for all your help.