can you enable GDLib??

Status
Not open for further replies.

caffei47

New Member
Messages
21
Reaction score
0
Points
0
can you please enable GDLib's jpg feature?? because I am trying to install the latest freeway oscomerse software, and everything that it needs is enabled other than the GDLib's jpg feature...

so is it possible, and allowable to get someone to enable the GDLib's jpg support for me??

my site is caffeinejunkiesinc.co.cc
and my account is my username, caffei47

please and thank you...
 

george21

X10Hosting Fanatic
Prime Account
Messages
114
Reaction score
1
Points
18
To be honest, if it's not installed already, I doubt it will be. You could always open a support ticket and ask though.
 

descalzo

Grim Squeaker
Community Support
Messages
9,373
Reaction score
326
Points
83
PHP:
<?php
// Create a blank image and add some text
$im = imagecreatetruecolor(120, 20);
$text_color = imagecolorallocate($im, 233, 14, 91);
imagestring($im, 1, 5, 5,  'A Simple Text String', $text_color);

// Set the content type header - in this case image/jpeg
header('Content-Type: image/jpeg');

// Output the image
imagejpeg($im);

// Free up memory
imagedestroy($im);
?>

Create a file, jpeg_test.php and add the above, making 100% sure that there is NO whitespace outside the ?> and <?php

See if it runs.

It runs for me on Chopin, so GD does run with jpeg support.
 

caffei47

New Member
Messages
21
Reaction score
0
Points
0
curious...it worked just like you said...so I wonder why freeway states there is no jpg support in gdlib... *scratches head*
thanks for your help.
 
Status
Not open for further replies.
Top