PHP Image Problem
Posted by: pgp_protector
Posted on: 2007-12-22 14:03:00
I'm working on a custom sig for Gaia Online, and want the PHP image to grab my current avatar and place it in the sig image.
Now I was going to do it using the following code
[code]
$image = imagecreatefromjpeg("BaseImage.jpg");
$insert = imagecreatefrompng("http://avatar2.gaiaonline.com/avatarlocation");
$image = image_overlap($image, $insert);
[/code]
But It's throwing an error about "URL file-access is disabled in the server configuration"
So....
Am I able to change this ??