[PHP-WIN] How can I judge a sessionid is being used or not?

2001-04-05 Thread yanshuldg
I mean that I have a onlineuser table,which contains two columns, sessionid and username. When the user is online,I insert his sessionid(created by php) and username into the sessionid table,and I want to delete the record when the user is offline,That's: How can I judge a sessionid is being used

Re: [PHP-WIN] mail() Function and time

2001-04-05 Thread Yasuo Ohgaki
date('r') has bug. It will be fixed in 4.0.5. day light saving will also be fixed in 4.0.5. (Is it only in CVS? I thought it will be in 4.0.5) Just FYI. -- Yasuo Ohgaki ""Marck D. Pearlstone"" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > -BEGIN PGP SI

Re: [PHP-WIN] Error on new install on IIS 5.0

2001-04-05 Thread Phil Driscoll
Maybe you've accidentally uncommented the browscap= line in your php.ini? Cheers -- Phil Driscoll Dial Solutions +44 (0)113 294 5112 http://www.dialsolutions.com http://www.dtonline.org -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

RE: [PHP-WIN] Exec() In Windows

2001-04-05 Thread alain samoun
Can you publish this COM object somewhere? it will be helpful for a lot of us waiting to have the exec functions fixed for windows. Message from Alain Samoun [EMAIL PROTECTED] -Original Message- From: Dale Heil [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 05, 2001 5:12 AM To: 'zugut'

RE: [PHP-WIN] Excel Manipulation

2001-04-05 Thread alain samoun
You can check the number of written rows every so often, see the COM class Excel at: http://phpclasses.upperdesign.com/browse.html?package=86 Message from Alain Samoun [EMAIL PROTECTED] HEAR ME>> http://pagoo.com/signature/alain -Original Message- From: Conover, Ryan [mailto:[EMAIL PR

php-windows Digest 5 Apr 2001 22:23:11 -0000 Issue 529

2001-04-05 Thread php-windows-digest-help
php-windows Digest 5 Apr 2001 22:23:11 - Issue 529 Topics (messages 6527 through 6540): Re: OT e-mail virus "snowhite ... ha,ha,ha" 6527 by: David Elliott Re: getmxrr() problems 6528 by: Yasuo Ohgaki Re: something wrong w/ ereg() ? 6529 by: Yasuo Ohgaki 653

RE: [PHP-WIN] COM

2001-04-05 Thread alain samoun
Check: http://www.phpbuilder.com/columns/alain20001003.php3 and for Excel: http://phpclasses.upperdesign.com/browse.html?package=86 One thing, to remember is that since PHP is server side only, you can't expect it to open a COM object on the client side... Also, multiple errors may fill up the pr

[PHP-WIN] Error on new install on IIS 5.0

2001-04-05 Thread Conover, Ryan
I get the following error on everypage of X-Powered-By: PHP/4.0.4pl1 Content-type: text/html and PHP Warning: Cannot open './browscap/browscap.ini' for reading in Unknown on line 0 Please help. ryan Conover -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PR

RE: [PHP-WIN] something wrong w/ ereg() ?

2001-04-05 Thread Asendorf, John
I've had a lot of good luck using ereg* functions As a book learning kind of person, I read Mastering Regular Expressions by Jeffrey Friedl and have yet to have a major problem. Then again, I haven't had any experience with other implementations of regex so I may be missing something. -

[PHP-WIN] something wrong w/ ereg() ?

2001-04-05 Thread ~~~i LeoNid ~~
Are people here aware of specific implementation of all ereg~() functions? It seemed, they didn't work for relatively complex comparisons (with long strings) at least on Windows95. Some of thier calls complain about about reg_expressions, like "?" qualifiers, etc, some expressions - are not inte

[PHP-WIN] Failed opening for inclusion

2001-04-05 Thread George Rae
I receive the following error on my NT 4.0 srerver box with NTFS. Warning: Failed opening 'index1.htm' for inclusion (include_path='') in E:\users\cstone\index.php on line 47 Any ideas why I cannot create a new file, but can read an existing one. I have tried different perms settings. Regards

[PHP-WIN] Excel Manipulation

2001-04-05 Thread Conover, Ryan
If I have an excel document I created dynamically and after every 8 records I want it to automatically want to print. Is there a way to do this in PHP or some other language. Ryan Conover -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

[PHP-WIN] COM

2001-04-05 Thread Conover, Ryan
What needs to be installed for COM say Office COMS to work. What external programs you need installed for say excel and word. Anything in the php.ini. Anything else please let me know. Ryan -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additi

[PHP-WIN] Antwort: RE: [PHP-WIN] Oracle record counting

2001-04-05 Thread clever
Hi John, I see in your code that currently you are using while ( OCIFetchInto ( $stmt_search , $results ) ) { and //for ( $i = 0; $i < $nrows; $i++ ) { //reset($results); //$data = $column['value']; is not being used. But you are actually using the variables fo

Re: [PHP-WIN] Apache no see PHP - solved!

2001-04-05 Thread Marco Bleeker
Problem solved! Thank you for pointing me to error.log! It read [Wed Apr 04 17:11:55 2001] [error] [client 127.0.0.1] File does not exist: c:/program files/apache group/apache/htdocs/php4/php.exe/test1.php Note the peculiar path. Now I looked in httpd.conf: ScriptAlias /php4/ "C:/PHP4/" AddTy

RE: [PHP-WIN] Oracle record counting

2001-04-05 Thread Asendorf, John
It's a bit long... and it's bastardized in that there are a number of lines commented out because I'm experimenting. The following code gives me a list of customers to choose from. It works now, but I wanted to make sure I get at least ONE result. If not I want to kick back an error. If there

RE: [PHP-WIN] Exec() In Windows

2001-04-05 Thread Dale Heil
Hello, I went through the same problems but got some help from a coworker. Oliver was right about the user ID. what you can do is change the .exe to an ActiveX.dll COM object. Then add it to a MTS package component. MTS can be installed off the NT4 Option Pack (downloadable from MS)

Re: [PHP-WIN] something wrong w/ ereg() ?

2001-04-05 Thread Yasuo Ohgaki
ereg*() have more restrictions than preg*(). for example, ereg('(A){1,1000}',$str,$regs); I think it does work with current PHP. You might find something if you search BugDB. Regards, -- Yasuo Ohgaki ""~~~i LeoNid ~~"" <[EMAIL PROTECTED]> wrote in message 3acc1b57.6416043@localhost">news:3acc1

Re: [PHP-WIN] getmxrr() problems

2001-04-05 Thread Yasuo Ohgaki
I guess it's not supported under windows. getmxrr(), getdnsrr() does not work for me neither. You can take a look at FUNCTION_LIST.txt in PHP source dist. but it seems outdated. If you find any better source that list functions supported under Windows, let me know to. Regards, -- Yasuo Ohgaki "

Re: [PHP-WIN] OT e-mail virus "snowhite ... ha,ha,ha"

2001-04-05 Thread David Elliott
Dear Wolfgang On 05 April 2001 at 12:14:34 +0200 (which was 11:14 where I live) Wolfgang Schneider potrebbe scrivere > It seems to me that perhaps some list members' computer may be infected > and is sending out these mails. ==8<==

php-windows Digest 5 Apr 2001 10:10:12 -0000 Issue 528

2001-04-05 Thread php-windows-digest-help
php-windows Digest 5 Apr 2001 10:10:12 - Issue 528 Topics (messages 6518 through 6526): Re: Exec() In Windows 6518 by: James Moore 6522 by: Jason Gan 6523 by: Robin Bolton Methods for uploading files 6519 by: Mike Flynn Re: HELP!!! (PHP-WINDOWS98-APACHE)

[PHP-WIN] e-mail virus "snowhite ... ha,ha,ha"

2001-04-05 Thread Wolfgang Schneider
Hi everyone, for a little while now, I am at times receiving an e-mail with an attached virus, the virus is of the "worm" category and self replicates and sends out e-mails with some text about "snowhite and dwarfs" and a file attachment (scr) to e-mail addresses in the person's address book. It

[PHP-WIN] something wrong w/ ereg() ?

2001-04-05 Thread ~~~i LeoNid ~~
Are people here aware of specifics for implementation of all ereg~() functions? It seemed, they didn't work for relatively complex comparisons (with long strings) at least on Windows95. Some of thier calls complain about about reg_expressions, like "?" qualifiers, etc, some expressions - are not