Re: [PHP] Background Image

2007-08-28 Thread Per Jessen
Jeff wrote: > What would be the appropriate way to display this code so the image > would not scroll, resize to the users current screen resolutions and > just the page content would scroll? This list is about PHP, and probably not the best place to ask that question, but you need to look at CSS

Re: [PHP] background process

2005-01-27 Thread Richard Lynch
mbneto wrote: > I'd like to create a script that will act as a daemon. > > Now I simply add while() { do stuff } > > But this forces me to call it script.php &. Is there a way to make > this work without the & You're probably better off using & when calling it, but: http://php.net/pcntl_fork

Re: [PHP] background="#"

2004-07-22 Thread raditha dissanayake
Tobias Brasier wrote: I have recently noticed a problem with our code or our webserver (Apache) when I execute a .php file. I have taken all php code out, but within an html tag, I use background="#", which is used for older browsers such as Netscape 4.7 if you have a background color or imag

RE: [PHP] background="#"

2004-07-22 Thread Michael Sims
Tobias Brasier wrote: > I have recently noticed a problem with our code or our webserver > (Apache) when I execute a .php file. I have taken all php code out, > but within an html tag, I use background="#", which is used for > older browsers such as Netscape 4.7 if you have a background color or

Re: [PHP] background="#"

2004-07-22 Thread James E Hicks III
On Thursday 22 July 2004 10:23 am, Tobias Brasier wrote: > The problem is that when I run the page, the log files show that the page > was accessed twice. I would be looking for calls to the header() function or a meta refresh tag in the header of this program. Maybe there is an include() file th

RE: [PHP] Background process

2003-08-14 Thread Chris W. Parker
Jackson Miller on Wednesday, August 13, 2003 12:21 PM said: > Is there a faster way to start a background process? Maybe you can pause your script somehow before you execute the redirect? Also, are you sure that it's not redirecting until the script starts? Maybe i

Re: [PHP] Background process

2003-08-14 Thread Nicholas Robinson
Are you sending a after the re-direct to ensure your browser loads the page as soon as possible rather than delaying? If not, this could appear that it isn't re-directing until the script starts. On Wednesday 13 Aug 2003 8:21 pm, Jackson Miller wrote: > I have a script that starts a background

Re: [PHP] Background process (sending mails)

2002-08-21 Thread Rasmus Lerdorf
You don't need to modify sendmail's config, you simply need to modify how you are calling sendmail from PHP. Chances are the server you are on already flushes the queue occasionally. You'd need to try to figure out how often, perhaps simply by trial and error. Since you have no control over the

Re: [PHP] Background process (sending mails)

2002-08-21 Thread Pupeno
Rasmus Lerdorf wrote: > Simply configure your MTA to queue requests coming from PHP. Your php.ini > file has the sendmail invocation line that is used by PHP's mail() > function. Most MTA's out there have a sendmail-like interface and most > have a way to tell it to simply queue the request and

Re: [PHP] Background process (sending mails)

2002-08-21 Thread Rasmus Lerdorf
Simply configure your MTA to queue requests coming from PHP. Your php.ini file has the sendmail invocation line that is used by PHP's mail() function. Most MTA's out there have a sendmail-like interface and most have a way to tell it to simply queue the request and return immediately. For sendm

RE: [PHP] Background Processing

2002-04-24 Thread Miguel Cruz
On Wed, 24 Apr 2002, Maxim Maletsky (PHPBeginner.com) wrote: > You can use PHP-GTK in the background. Just call it with cron. > Alternatively, you can set PHP to keep executing on the user exit. What > was that function called? on_*_shutdown()? > > Could be dangerous though, what if it goes to lo

RE: [PHP] Background Processing

2002-04-24 Thread Maxim Maletsky \(PHPBeginner.com\)
You can use PHP-GTK in the background. Just call it with cron. Alternatively, you can set PHP to keep executing on the user exit. What was that function called? on_*_shutdown()? Could be dangerous though, what if it goes to loop-in your server? 30 mins is quite a few for a script to run. So, che

Re: [PHP] Background Processing

2002-04-24 Thread otto
- Original Message - From: "Richard Perez" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, April 24, 2002 4:32 PM Subject: [PHP] Background Processing > Hi people!! > > I'm trying to find a way to handle this but I don't come up with anything. > > I need to execute a query

Re: [PHP] background processing / forking

2001-03-06 Thread Mukul Sabharwal
Disclaimer: The following post contains C code for *nix! Viewer discretion recommended! Hi, I'm back, I couldn't resist you mentioning C, so as you did, big fault, the code that follows is probably much better than exec, as an stderr terminal will still be attached, but anyway: exec("your

Re: [PHP] Background processing / forking

2001-03-06 Thread Anders Johannsen
> Now the problem is that the C program will be running > for longs periods like maybe half or even an hour. So > i would basically want to just execute the program and > return control to the script immediately so that the c > program continues it's work. > > it's easy with forking. but i dont se

Re: [PHP] Background processing / forking

2001-03-06 Thread Mukul Sabharwal
Hi Natasha, Well the probably easiest shitty way to do it is: exec("theprogram 1> /some/file 2>&1 &"); would exec()ute theprogram and will put it's output in /some/file and stderr's output also in the /some/file, and & at last signifies the backgroundness of the program. however as you mention