Author Topic: does 4images run´s on lycos ? <*((((><  (Read 6606 times)

0 Members and 1 Guest are viewing this topic.

!¯¯¯¯|° (:-)->-

  • Guest
does 4images run´s on lycos ? <*((((><
« on: September 03, 2002, 01:17:34 PM »
thanks for answers


http://WWW©_6reatings_from_the_*Master_of_the_6reatest_artquantity_named-_-www.*.SeX-_-@rtist.info *

username = BROKEN FLYING HEADER  !¯¯¯¯|° (:-)->-<  1st listing in the memberlist   username <

Offline Nicky

  • Administrator
  • 4images Guru
  • *****
  • Posts: 3.195
    • View Profile
does 4images run´s on lycos ? <*((((><
« Reply #1 on: September 03, 2002, 01:26:35 PM »
yes
cheers
Nicky
Your first three "must do" before you ask a question ! (© by V@no)
- please read the Forum Rules ...
- please study the FAQ ...
- please try to Search for your answer ...

nicky.net 4 4images
Signature stolen from mawenzi

Offline sixonetonoffun

  • Pre-Newbie
  • Posts: 3
    • View Profile
does 4images run´s on lycos ? <*((((><
« Reply #2 on: October 19, 2002, 08:13:57 AM »
Only thing I found I had to change for lycos.co.uk was in image_utils.php
For some reason the version of GD must not be getting selected correctly.
Or maybe lycos uses a modified version.

Probably there is a better way to code this but worked for me.
around line: 68
Code: [Select]

  $types = array(1 => "gif", 2 => "jpeg", 3 => "png");
  if (defined('CONVERT_IS_GD2') && CONVERT_IS_GD2 == 1) {
    $thumb = imagecreatetruecolor($width, $height);
  }
  else {
    $thumb = imagecreate($width, $height);
  }


to this

Code: [Select]

$types = array(1 => "gif", 2 => "jpeg", 3 => "png");
  if (defined('CONVERT_IS_GD2') && CONVERT_IS_GD2 == 1) {
    $thumb = imagecreatetruecolor($width, $height);
  }
  else {
    $thumb = ImageCreateTrueColor($width, $height);
  }