Re: [PHP] config question

2001-03-05 Thread Kelly Corkill
? phpinfo() ? On Mon, 5 Mar 2001 [EMAIL PROTECTED] wrote: Date: Mon, 5 Mar 2001 20:00:47 EST From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: [PHP] config question My server admin is being stupid... magic_quotes_gpc have been turned off unexpectadly so phpMyAdmin aint

Re: [PHP] PHP and the MIME type - an Apache question

2001-03-09 Thread Kelly Corkill
I think it might help if you elaborated a little more on what you mean by "parse out all of my PHP scripts to run a particular CGI script". Apache has to be set up so know how to handle php (mime types), but it almost sounds like you're trying to execute a CGI in place of a php file? Also, if

Re: [PHP] Delaying Printed Output

2001-03-24 Thread Kelly Corkill
Speaking off the top of my head, seems like a combination of html meta refresh and a variable that increments based on HTTP REFERRER=PHP_SELF could provide the effect you're looking for. Certainly you could meta refresh to new pages in sequence. Or of course just use an animated gif if static

Re: [PHP] How to stop images preloading in netscape?

2001-08-13 Thread Kelly Corkill
Define the height and width for each graphic, otherwise how does the browser know how to draw the screen? With height/width netscape will allocate space for the missing images and fill them in as the files complete, without - it waits until all are done before drawing to the screen. MSIE gets

Re: [PHP] Walking Through Mail Headers

2001-02-26 Thread Kelly Corkill
On the surface this sounds like a job for procmail (www.procmail.org). On Mon, 26 Feb 2001, Jason wrote: Date: Mon, 26 Feb 2001 11:58:53 -0800 From: Jason [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: [PHP] Walking Through Mail Headers Hi, I need a way to walk through mail

Re: [PHP] Mail() Problems in a heterogenous network

2001-02-26 Thread Kelly Corkill
Sounds like they have relay disabled on their SMTP server and the IP that your PHP is running on is not on an included network address. As them to verify that your ip address is ok. The mail server will accept locally destined mail but anything else is seen as a relay attempt (Spam) and

Re: [PHP] PHP and iPlanet on Solaris

2001-02-28 Thread Kelly Corkill
Sounds like the server doesn't have or recognize the mime type, ala on apache in srm.conf: application/x-httpd-php3 phtml php3 php I'm not familiar with iPlanet but on apache I would check the mime type definition, apache httpd.conf and make sure to restart the server to reload. On Wed, 28 Feb

Re: [PHP] Daily Rotating Page

2001-02-28 Thread Kelly Corkill
If on unix "man cron". Write a script to change a pointer and use cron to run the script. On Wed, 28 Feb 2001 [EMAIL PROTECTED] wrote: Date: Wed, 28 Feb 2001 20:30:47 EST From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: [PHP] Daily Rotating Page I have set up a template for a

Re: [PHP] newbie:cron job

2001-02-28 Thread Kelly Corkill
Wen, I'm not clear on what you're looking for. You want to schedule something in cron to run a script that does what? Cron is a unix scheduling tool, via which you can trigger shell scripts to occur at specific intervals/points in time. Sounds like what you may want is a script that acts only

Re: [PHP] Munging hidden/form variables

2001-03-01 Thread Kelly Corkill
I would think you should be able to write a random string to a file when the form page is accessed, and carry a variable with the action then have the recipient compare. Presents other challenges but should give you that comforting feeling he was looking for. On Thu, 1 Mar 2001 [EMAIL