[PHP-WIN] HTTP_REFERER

2001-11-20 Thread Peter
Can anyone tell me under what circumstances this is set? As far as I can tell it only gets set on clicking an A tag from a referring page, but shouldn't it also get set if I POST a form from the referring page? In my tests this doesn't happen. I'm tried using PHP 4.05 / 4.06 on Win2K CGI

[PHP-WIN] Sablotron crashes php.exe

2001-11-20 Thread Arve Bersvendsen
I am currently trying to get XSLT to work in Apache 1.3.20 / PHP 4.0.6 (and I've tried 4.0.8dev as well). just calling xslt_process($xslstring, $xmlstring, $result); by itself works quite nicely, but I'm writing an object based menu system. Whenever one of the objects member

php-windows Digest 20 Nov 2001 12:12:36 -0000 Issue 864

2001-11-20 Thread php-windows-digest-help
php-windows Digest 20 Nov 2001 12:12:36 - Issue 864 Topics (messages 10525 through 10531): Re: Adding *another* person to an e-mail *to:* address 10525 by: Anthony Ritter Re: Couldn't Open Stream Issues 10526 by: R'twick Niceorgaw Re: new problem... problem with Query...

[PHP-WIN]How to know how long a person stay

2001-11-20 Thread Patrick SILVA
Hello is it possible with PHP to know how much time a person stay on a web page? thanks /-/ Patrick Silva Gestion serveurs et domaines Cyse Informatique 105 avenue du Général Leclerc 77400 Lagny sur marne (France) tel : (33)1 64303232 - Fax : (33)1

[PHP-WIN] UPDATE is NOT working.... I cannot figure out why

2001-11-20 Thread Todd Williamsen
Here is the code: ? if ((!$FirstName) || (!$LastName)) { header(Location: http://www.feminineforum.com/admin/pick_modcontact.php;); exit; } else { session_start(); } if ($valid != yes) { header(Location: http://www.feminineforum.com/admin/contact_menu.php;); exit; } else {

Re: [PHP-WIN]How to know how long a person stay

2001-11-20 Thread Michel Laine
I do not believe that this is possible, not as you would it to work anyway. Something like this might be realized with sessions set to a very short timeout, but then your users might get pissed (due to the short timeout). Patrick Silva wrote: Hello is it possible with PHP to know how much

Re: [PHP-WIN]How to know how long a person stay

2001-11-20 Thread Patrick SILVA
OK I had do this but when the person close the browser or leave the site, I can't have any information about that ! - Original Message - From: George Pitcher [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, November 20, 2001 6:08 PM Subject: Re: [PHP-WIN]How to know how long a

[PHP-WIN] PHP as ISAPI on IIS 5.0/win2k server

2001-11-20 Thread Laurent Protti
Hello, i've got a little problem, I try installing PHP 4.06 on my web server as an ISAPI filter. I've modified the webserver configuration to add the filter (php4isapi.dll which I copied in \winnt\system), modified the home directory configuration so that .php files are interpreted by

[PHP-WIN] Re: PHP as ISAPI on IIS 5.0/win2k server

2001-11-20 Thread Todd Williamsen
Yes, I resolved it... run Apache... its easier to configure and more secure, not like IIS that has more holes than swiss cheese... then disable IIS Laurent Protti [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hello, i've got a little problem, I try installing

RE: [PHP-WIN] UPDATE is NOT working.... I cannot figure out why

2001-11-20 Thread Svensson, B.A.T. (HKG)
-Original Message- From: Todd Williamsen The query fails for some unknown reason. I have tried with and without the double qoutes, and with single qoutes. with the mysql_query() function..still fails. for some unknown reason? What does

[PHP-WIN] imap_fetch_overview() POP/IMAP

2001-11-20 Thread Niclas Krantz
Hello! I have a problem concerning how to work w/ POP and/or IMAP w/ PHP. When I was working, I sat w/ my PC and programmed, I tested the results w/ my Mac, everything worked lovely! BUT, when I tried to access my PHP script from my PC, (btw, I have my webserver on that machine..), the PHP gave

RE: [PHP-WIN] UPDATE is NOT working.... I cannot figure out why

2001-11-20 Thread Svensson, B.A.T. (HKG)
No, it puts out the or die message of Couldn't execute query So why not try to figure out what error message that is created instead of just killing the process. -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

RE: [PHP-WIN]How to know how long a person stay

2001-11-20 Thread Corn Vollney-R7019C
Patrick, A couple of ways you could do this: 1. Using jscript, set a cookie on the users machine with the time stamp of when they opened the page, using the onload event. Then when the user exits the page, using the onUnload event, read the cookie data, and send it to a php script to write it

[PHP-WIN] PSD - File Info

2001-11-20 Thread Josh Seward
I have managed to take the info from a jpg file. With the iptcparse() function. Is there a way to take the info straight from a .psd photoshop image? Thanks, Josh Seward [EMAIL PROTECTED]

[PHP-WIN] how do you determine how many people are on your webpage right now!

2001-11-20 Thread ChaoticWorks
how do you determine how many people are on your webpage right now? -Sean-

RE: [PHP-WIN] how do you determine how many people are on your webpage right now!

2001-11-20 Thread Corn Vollney-R7019C
Sessions and some kind of counter variable. Check the documentation for more info on sessions. Basically it would go like this: 1) User loads page and a session is created, this increments the counter by one 2) When the session is destroyed the counter is deincremented. Then create a nifty

RE: [PHP-WIN] how do you determine how many people are on your webpage right now!

2001-11-20 Thread Svensson, B.A.T. (HKG)
how do you determine how many people are on your webpage right now? You print it out, and then you just count the number of people currently standing on the paper. Tech solutions should be kept simple and manageable for every one! :) -- PHP Windows Mailing List (http://www.php.net/) To

[PHP-WIN] How to get large numer of visitors for a webpage

2001-11-20 Thread Svensson, B.A.T. (HKG)
how do you determine how many people are on your webpage right now? You print it out, and then you just count the number of people currently standing on the paper. Tech solutions should be kept simple and manageable for every one! :) To get large number of visitors, you should put your pages at

Re: [PHP-WIN] how do you determine how many people are on your webpage right now!

2001-11-20 Thread David Elliott
Hail Sean On 20 November 2001 at 16:20:36 EST (which was 21:20 where I live) Sean wrote and made these points S how do you determine how many people are on your webpage right now? Try Name: Users Online Author: Daniel Kushner [EMAIL PROTECTED] Description: Reports the number of users that

[PHP-WIN] Re: Win 2k, IIS 5 and PHP

2001-11-20 Thread Mike Webby
Did you get any answers Martin? If not does the group have a guide for us as many functions just don't work using iis and php.exe Martin Steel [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hi, I installed php on my win2k machine running IIS 5, i've set it up

RE: [PHP-WIN] Re: Win 2k, IIS 5 and PHP

2001-11-20 Thread Martin Steel
I've still got no idea how to get php working on IIS as an isapi filter, it still only interprets some of the functions. I've tried the internet and can't find anything I haven't already done. Can anyone please help? Martin. -Original Message- From: Mike Webby [mailto:[EMAIL

[PHP-WIN] Compiling Questions

2001-11-20 Thread ALi
Hi, It's my first time trying to compile PHP on Win32 myself. I get lots of arpa/inet.h not found errors. Is this usual? I'm trying to build the apache dll. ALi -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

php-windows Digest 21 Nov 2001 06:13:13 -0000 Issue 865

2001-11-20 Thread php-windows-digest-help
php-windows Digest 21 Nov 2001 06:13:13 - Issue 865 Topics (messages 10532 through 10556): How to know how long a person stay 10532 by: Patrick SILVA 10534 by: Michel Laine 10535 by: George Pitcher 10536 by: Patrick SILVA 10546 by: Corn

[PHP-WIN] PHP4 Win2k 'Application Error'

2001-11-20 Thread Jason Reid
I'm running Windows 2000 Advanced server w/ SP2, with IIS and apache 1.3.22. When i run some scripts(PEAR webinstaller.php for example) i get a Application Error stating that php.exe (if trying under IIS) or apache.exe (when trying under apache) have caused a error, saying: ' The instruction at