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 04032002, Rasmus Lerdorf wrote: Which OS? If a Linux distro, are you sure you have both libpng and libpng-devel packages installed? And does

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 default

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...; $headers

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: ? echo $REMOTE_ADDR; ? 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

Re: [PHP] GD

2001-09-07 Thread Sebastian Wenleder
\ --with-jpeg-dir=your dir \ --with-png-dir=your dir \ --with-tiff-dir=your dir \ --with-freetype-dir=your 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

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.=Subject:

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: br

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] 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: [EMAIL