Re: [PHP] Re: [Off] How much time should this take?

2005-09-16 Thread Brad Dameron
server. How do I know? Because I build these configurations almost daily. If you get stuck with init scripts there's something wrong. Maybe you should man chkconfig. Brad Dameron Senior Systems Administrator SeaTab Software -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

Re: [PHP] Good PHP Books

2003-06-16 Thread Brad Dameron
Mark, An exceptional book and one I sleep with next to my bed is the PHP Bible 2nd Edition from Tim Converse and Joyce Park. This edition is published September 2002 and covers PHP 4.2. However it is 1000 pages. But it covers PHP in a simple explanatory way and will be a great resource. Hope

Re: [PHP] Re: PHP help/example for booking program

2003-06-16 Thread Brad Dameron
Try here: http://www.hotscripts.com/PHP/Scripts_and_Programs/ or here: http://php.resourceindex.com/ Enjoy, Brad - Original Message - From: Giuliano [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, June 16, 2003 7:42 AM Subject: [PHP] Re: PHP help/example for booking program

Re: [PHP] Server-initiated HTTP requests

2003-06-16 Thread Brad Dameron
? header(Location:http://www.domain.com;); ? Brad - Original Message - From: Sander [EMAIL PROTECTED] I'm using php to have several servers communicate between eachother. I want to do the following: Server A sends a request to server B. Server B stores some information about this

Re: [PHP] timing out exec statements

2003-06-16 Thread Brad Dameron
Wouldn't this be best done inside your perl script? That way you can have it retry a few times then if it hard fails return to the PHP script. Brad - Original Message - From: Dave [Hawk-Systems] [EMAIL PROTECTED] To: php list [EMAIL PROTECTED] Sent: Monday, June 16, 2003 11:55 AM

RE: [PHP] php mail()

2002-10-14 Thread Brad Dameron
to correct it so that it sends the bounces to the person sending it? This is on a virtual host machine with hundreds of domains. Thank you, --- Brad Dameron Network Account Executive TSCNet Inc

RE: [PHP] php mail()

2002-10-14 Thread Brad Dameron
This is being done. And no that is not how sendmail works unfortunately. --- Brad Dameron Network Account Executive TSCNet Inc. www.tscnet.com

RE: [PHP] Chat with php

2002-10-07 Thread Brad Dameron
Another way is to use javascript with PHP to pull the database every so many seconds. I have seen this in I think it was PHPChat. Been a long time however. --- Brad Dameron Network Account Executive TSCNet Inc

RE: [PHP] file reading

2002-08-27 Thread Brad Dameron
'w+' - Open for reading and writing; place the file pointer at the beginning of the file and truncate the file to zero length. If the file does not exist, attempt to create it. Change it to r since you are only reading. Also check to make sure your pathing is correct. --- Brad Dameron

RE: [PHP] include() from another sub-domain

2002-08-19 Thread Brad Dameron
What I would do is change the include filename to something like functions.inc like I do. This way the server won't try and run it for you. --- Brad Dameron Network Account Executive TSCNet Inc