Re: [PHP] GD library

2002-04-11 Thread Sebastian Wenleder
At 14:21 Uhr +0200 11.04.2002, Ron Allen wrote: >I have downloaded the GD library and I am wondering how do I install it.. > >I unzipped it and put it my root. I have PHP version 4.1.1...what else >is there to do? Does anybody have any script for me to test it real quick? > you will have to

Re: [PHP] PHP 4.1.2 + GD 2.0.1 please help.

2002-03-04 Thread Sebastian Wenleder
I am having the same problem, I can't compile the latest php-cvs with gd support on Linux. It worked until last week or so. Sebastian At 8:46 Uhr -0800 04.03.2002, Rasmus Lerdorf wrote: >Which OS? If a Linux distro, are you sure you have both libpng and >libpng-devel packages installed? And d

Re: [PHP] How to use gd/php with no freetype?

2001-12-06 Thread Sebastian Wenleder
>Hello and thanks for your time. > > After endless searching, I am still lost > >let's just assume I can't install freetype, and it looks like that for >matters I won't get into. (linux, raq 3) > >What solution would allow me to specify fonts for text written into images? >Instead of using the de

Re: [PHP] HTTP_REFERER

2001-11-23 Thread Sebastian Wenleder
Hi Jord, You don't need to get HTTP_REFERER, in order to know what the client requested! And every browser stores some other info in HTTP_REFERER... The filename that was reqested is stored in $REQUEST_URI Best, Sebastian >Hi, >I'm writing a 404 handler and in order to report the item that was

Re: [PHP] Send an e-mail witdh php

2001-11-22 Thread Sebastian Wenleder
>Hello, > >I want to send an e-mail to one address(To) and many carbon copies to many >e-mailadresses(BCC). > >Is there a class to do this?? > >Henk Hi Henk, You don't need a special class, just use: $to = "[EMAIL PROTECTED]"; $subject = "Your Subject"; $messages = "some text you want to send.

Re: [PHP] Detecting IP address

2001-11-19 Thread Sebastian Wenleder
Hi Heidi, >Does anyone have any idea how i can detect a clients >IP address? in PHP: best, Sebastian -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EM

Re: [PHP] GD

2001-09-07 Thread Sebastian Wenleder
b= \ --with-jpeg-dir= \ --with-png-dir= \ --with-tiff-dir= \ --with-freetype-dir= #make #make install then you will have to restart apache Best regards, Sebastian Wenleder -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [E

Re: [PHP] MAIL to a Bcc: ???

2001-07-11 Thread Sebastian Wenleder
At 18:02 Uhr -0700 10.07.2001, Marcus James Christian wrote: >Hello, > >How do I change the value of the "TO:" in a mail() function to a value >of Bcc: ? > >Or at least trick the mail to a Bcc:So the recipients emails aren't >shown? Hi Marcus, $headers="Bcc:[EMAIL PROTECTED]\n"; $headers.=

Re: [PHP] Code check please

2001-06-20 Thread Sebastian Wenleder
At 18:00 Uhr +0200 20.06.2001, Andreas Skarin wrote: >I've tried to get this working for over an hour >now, and it still won't. I don't even get an error >message to help me find the problem so I was >hoping that someone could check my code for me. [snip] >$sql = "INSERT INTO tabell SET" . >

Re: [PHP] PHP / gd problems / compiling

2001-06-20 Thread Sebastian Wenleder
>my configure line: > >./configure' '--with-mysql' '--with-apache=../apache_1.3.12' >'--enable-track-vars' '--enable-ftp' '--with-jpeg-dir=/usr/local/bin' >'--with-gd-dir=/usr/local/bin' > >gd version 1.8.1 .. > >Then whenever I try to create an image of any kind, be it gif, jpg, or png, >I get: >

Re: [PHP] download successfull... but in binary... why?

2001-05-09 Thread Sebastian Wenleder
Hi, >header("Content-type: application/download"); try this: Header("Content-Type: application/x-octet-stream"); It always worked for me... good luck, Sebastian -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMA

[PHP] Postscript Color in PHP 4.0.4pl1

2001-04-05 Thread Sebastian Wenleder
Hi! For some new Project of my company I have to create ecards with text(PostScript) printed into the image. I compiled gd-lib-2.0.1, T1lib-1.1.1, recompiled php-4.0.4pl1. I was very much pleased with the results until I used the PHP-Function ImagePSText, since I could not figure out how I ha