Color index out of range!

See all posts See thread Reply

Re: Color index out of range! new!
by Paraleste Radu, 15 years ago
1. I use the lasted version of class.
2. I dont know where I find the logs to view complete error.
3. Code is:
error_reporting(E_ALL); 
include('class.upload.php');
if ($handle->uploaded) {
  $handle->image_resize            = true;
  $handle->image_ratio_y           = true;
  $handle->image_x                 = 400;
  $handle->file_new_name_body 	 = 'xxx';	
}
$handle->Process('/images/');
echo $handle->error;
$handle-> Clean();

4. Image is a sample foto from my documents pictures.(windows xp)

5. I think can be a hosting problem because in my computer run perfectly but when I upload the hosting server I receive the error.

ThanksReply
Re: Color index out of range! new!
by Paraleste Radu, 15 years ago
ups...cod is:
error_reporting(E_ALL);
include('class.upload.php');
$handle = new Upload($_FILES['my_field']);
if ($handle->uploaded) {
  $handle->image_resize = true;
  $handle->image_ratio_y = true;
  $handle->image_x = 400;
  $handle->file_new_name_body = 'xxx';
}
$handle->Process('/images/');
echo $handle->error;
$handle-> Clean();

wrong copy..:DReply
Re: Color index out of range! new!
by colin, 15 years ago
For the log, please do the following, after calling process():
echo $handle->log;
Reply