[PHP-WIN] Calling PHP script with Exec

2002-09-07 Thread Nicole Amashta
Hello PHPWinGroup! I am writing a php script that will need to call via exec() a 2nd php script to run in the background. (OS: linux) I am thinking it would look something like this: exec("php script2.php $param > /dev/null &"); I haven't actually attempted this yet. Was just hoping for a co

php-windows Digest 7 Sep 2002 09:29:39 -0000 Issue 1326

2002-09-07 Thread php-windows-digest-help
php-windows Digest 7 Sep 2002 09:29:39 - Issue 1326 Topics (messages 15688 through 15695): Re: JpGraph Bug report 15688 by: Opere, James problem with querystring 15689 by: hans 15690 by: Sandeep Murphy 15691 by: Matt Kynaston POST 15692 by: peter

[PHP-WIN] I got a little confusion about mysql and php

2002-09-07 Thread Raheel Hussain
hi, I m a newbie programmer and has just started working on php, i m not actually having much problem in it as because i have backgroud of C/C++ and vb and ASP and Pascal etc. I have a little confusion , may be it is gonna be a cheap question the question is as follows 1 - I have a mysql dat

Re: [PHP-WIN] problem with querystring

2002-09-07 Thread Hans Gruyaert
It works! Thanks a lot! "Matt Kynaston" <[EMAIL PROTECTED]> schreef in bericht [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Check your php.ini and make sure that register_globals is turned on. > > Either that or use: > if ($_REQUEST['a'] == "X") > which will give you the variable if its posted,

[PHP-WIN] Help! I will even Donate through Paypal, I only want to make a thumbnail of a picture through php code.

2002-09-07 Thread Kurtis Harper
Hi Gang, I am serious, I will send a donation (small- I am not a rich man :o) ) through PayPal, if someone is kind enough to help me out. What I need it to create a thumbnail of an uploaded picture. I am not fussy on how the PHP script accomplishes this as long as it works. I tried running Im

[PHP-WIN] Re: I got a little confusion about mysql and php

2002-09-07 Thread Constantin Baciu
"Raheel Hussain" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > > hi, > > I m a newbie programmer and has just started working on php, i m not actually having much problem in it as because i have backgroud of C/C++ and vb and ASP and Pascal etc. > I have a l

[PHP-WIN] Dying socket client kills serveer too ??

2002-09-07 Thread Sven Schnitzke
Hi, I'm kinda new at PHP and trying out 4.2.2.on Windows 98 using Apache 1.3.23 as webserver. however my Problem arises also with calling PHP -f in the box: Basically I do (leaving out error checking here): 0) echo "rcv from $host:$port:$n\r\n"; // else close and cle

RE: [PHP-WIN] Help! I will even Donate through Paypal, I only want to make a thumbnail of a picture through php code.

2002-09-07 Thread Rich Gray
Hi Kurtis So what error do you get when you run exec on convert.exe? Rich -Original Message- From: Kurtis Harper [mailto:[EMAIL PROTECTED]] Sent: 07 September 2002 08:55 To: [EMAIL PROTECTED] Subject: [PHP-WIN] Help! I will even Donate through Paypal, I only want to make a thumbnail of a

RE: [PHP-WIN] Calling PHP script with Exec

2002-09-07 Thread Rich Gray
Hi Nicole Some comments... You're redirecting stdout - I would redirect stderr as well i.e. >/dev/null 2>/tmp/errlog. Can't say about the load on the server - depends entirely on what your background script does... do you want to throttle the number of spawned processes or are you happy to let 5

Re: [PHP-WIN] Help! I will even Donate through Paypal, I only want to make a thumbnail of a picture through php code.

2002-09-07 Thread Kurtis Harper
LOL, there is no error. It seems as though the does not launch the convert.exe . Is there rights I have to setup in IIS to allow a program to be run through PHP. I am not sure if there exec() command is ment for this. If it is I must be missing something :( "Rich Gray" <[EMAIL PROTECTED]> wro

[PHP-WIN] IMAP install help

2002-09-07 Thread Admin
can some one direct me to a step-by-step guide to installing imap support in php 4.2.2 for windows , and IIS on w2k pro <* http://www.myispnet.net *> Administrator My ISP Network MSN Messenger= [EMAIL PROTECTED] <* http://www.kompukit.com *> -- PHP Windows Mailing

php-windows Digest 7 Sep 2002 22:26:04 -0000 Issue 1327

2002-09-07 Thread php-windows-digest-help
php-windows Digest 7 Sep 2002 22:26:04 - Issue 1327 Topics (messages 15696 through 15706): I got a little confusion about mysql and php 15696 by: Raheel Hussain 15702 by: Constantin Baciu Re: problem with querystring 15697 by: Hans Gruyaert Help! I will even Donat

[PHP-WIN] Stupid problem: cannot send variables!

2002-09-07 Thread Elias Lovén Larsson
I am experiencing major problems with sending variables from forms to PHP scripts. Newbie error perhaps, but I have never ever witnessed anything like this before with PHP! I am running Apache 1.3.23 with PHP 4.2.3 (SAPI) on Windows XP. The URL and the code: http://corner.no-ip.com/me/profile

RE: [PHP-WIN] Stupid problem: cannot send variables!

2002-09-07 Thread Rich Gray
Either switch on register_globals in php.ini (security implications however) or use echo $_GET['field'] instead of echo $field. HTH Rich -Original Message- From: Elias Lovén Larsson [mailto:[EMAIL PROTECTED]] Sent: 07 September 2002 11:32 To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: