Re: [PHP] Using system resident fonts with "image_xxx" routines?

2004-11-01 Thread Richard Davey
Hello Ken, Monday, November 1, 2004, 11:03:09 PM, you wrote: KT> Is it possible to use fonts on a system with php's image routines? KT> The GD supplied fonts look pretty crappy and if possible, I'd like KT> to just use fonts available on the system (I'm on a Mac) rather KT> than downloading a bun

[PHP] Using system resident fonts with "image_xxx" routines?

2004-11-01 Thread Ken Tozier
Is it possible to use fonts on a system with php's image routines? The GD supplied fonts look pretty crappy and if possible, I'd like to just use fonts available on the system (I'm on a Mac) rather than downloading a bunch of customized fonts exclusively for use with php's image_xxx routines.

Re: Re[2]: [PHP] Using system

2003-09-17 Thread Jason Wong
On Wednesday 17 September 2003 22:49, Uros wrote: > I think not Believe it or not, Robert's answer is correct. > here is my code > > #!/usr/local/bin/php -q > $ret = `nslookup -timeout=3 www.myhost.com |grep "Non-existent > host/domain"`; ?> > I always get automaticaly output. I also try to se

Re: [PHP] Using system

2003-09-17 Thread Gal Gur-Arie
may want to try the output buffers. ob_start(); ( .. Exec here ..) $Var = ob_end_clean(); , Wouter -Original Message- From: Uros [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 17, 2003 3:18 PM To: PHP General list Subject: [PHP] Using system Hello! I'm pulling my hair.

Re: Re[2]: [PHP] Using system

2003-09-17 Thread Robert Cummings
it .. Though, you may want to try the > >> output buffers. > >> > >> ob_start(); > >> ( .. Exec here ..) > >> $Var = ob_end_clean(); > >> > >> , > >> Wouter > >> > >> -Original Message- > >> From: Uros [mailto:

Re[2]: [PHP] Using system

2003-09-17 Thread Uros
(); >> ( .. Exec here ..) >> $Var = ob_end_clean(); >> >> , >> Wouter >> >> -Original Message- >> From: Uros [mailto:[EMAIL PROTECTED] >> Sent: Wednesday, September 17, 2003 3:18 PM >> To: PHP General list >> Subject: [PHP] Using system

RE: [PHP] Using system

2003-09-17 Thread Robert Cummings
( .. Exec here ..) > $Var = ob_end_clean(); > > , > Wouter > > -Original Message- > From: Uros [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 17, 2003 3:18 PM > To: PHP General list > Subject: [PHP] Using system > > Hello! > > I'

RE: [PHP] Using system

2003-09-17 Thread esctoday.com | Wouter van Vliet
st Subject: [PHP] Using system Hello! I'm pulling my hair. What is the right syntax to set output of some system call to variable. I tried everything (system, shell_exec,exec) and always get output to screen. Please help. PHP version 4.3.3 CLI -- Best regards, Uros -- PHP General Mai

[PHP] Using system

2003-09-17 Thread Uros
Hello! I'm pulling my hair. What is the right syntax to set output of some system call to variable. I tried everything (system, shell_exec,exec) and always get output to screen. Please help. PHP version 4.3.3 CLI -- Best regards, Uros -- PHP General Mailing List (http://www.php.net/) To un

[PHP] using system() as a different user

2001-09-20 Thread Adam Plocher
I'm trying to use the system() function to execute a shell command, but the shell command that needs to be executed, needs to be executed as a different user (not the default 'nobody' user). Can somebody show me what I need to do, to accomplish this. Thanks -Adam

Re: [PHP] using system() on NT/2K

2001-04-03 Thread Michael Kimsal
I thought there was something in the manual that it didn't work on IIS. I had the same problem, and had to give up. There was definitely someone else on the mailing list who mentioned this months ago. Christian Dechery wrote: > Why does system() - or any of its cousins, I've tried them all: e

[PHP] using system() on NT/2K

2001-04-02 Thread Christian Dechery
Why does system() - or any of its cousins, I've tried them all: exec(), passthru(), backtick operator, etc - doesn't output anything when running on a Win2k/IIS5 machine? I ran the exact same script on a WinME/Apache, and the output was perfect . Christian Deche