Re: [PHP] online detection
On Wed, Apr 11, 2001 at 08:00:56AM -0400, [EMAIL PROTECTED] wrote: > H I wonder which one ICQ uses :-) ICQ doesn't detect whether or not a person is online. It doesn't detect whether or not a person is browsing the Internet. All it detects is whether or not a person is connected to the Internet AND using their application. Checking if someone is online is much, much more difficult. -- Jason Stechschulte [EMAIL PROTECTED] -- : - cut in regexps I don't think we reached consensus on that. We're still backtracking... -- Larry Wall in <[EMAIL PROTECTED]> -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]
Re: [PHP] online detection
In a message dated 11/04/2001 12:58:11 GMT Daylight Time, [EMAIL PROTECTED] writes: << > Does anyone know how to detect when a user connects to the Internet > similar to ICQ? Sure. Three main possibilities: (1) Install a wire tap at his telephone line, together with some logic to detect connection attempts (2) Do the same, but at his provider's dialin box. (more difficult) (3) Install a proper trojan on the user's machine Most criminals use possibility 3 ;-) >> H I wonder which one ICQ uses :-) Ade -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]
Re: [PHP] online detection
On Wednesday 11 April 2001 06:23, you wrote: > Does anyone know how to detect when a user connects to the Internet > similar to ICQ? Sure. Three main possibilities: (1) Install a wire tap at his telephone line, together with some logic to detect connection attempts (2) Do the same, but at his provider's dialin box. (more difficult) (3) Install a proper trojan on the user's machine Most criminals use possibility 3 ;-) -- Christian Reiniger LGDC Webmaster (http://sunsite.dk/lgdc/) A - American Association Against Acronym Abuse -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]
Re: [PHP] online detection
On Wed, Apr 11, 2001 at 08:10:22AM +0200, [EMAIL PROTECTED] produced this golden nugget: > > Does anyone know how to detect when a user connects to the Internet > > similar > > to ICQ? > > I think you mean messages on pages like "321 user online"! > As HTTP is a stateless protocol, you can't really know this!!! > It's only an estimation - and you can use sessions to realize this (ask how > many sessions are active - and end a session after a short time like 5 > minutes!) > > witty There is a way to do it, _if_ the user is using an IM service, for icq the easiest way would prolly be to use the icq module for perl (i don't know whether there is a PHP class for icq), and then use that to generate your page... Mirabilis has made it possible to have the little "online" icon if you like... check out their site for more info... I dunno whether this is possible for AIM/etc... -- andreas.landmark -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]
Re: [PHP] online detection
> Does anyone know how to detect when a user connects to the Internet > similar > to ICQ? I think you mean messages on pages like "321 user online"! As HTTP is a stateless protocol, you can't really know this!!! It's only an estimation - and you can use sessions to realize this (ask how many sessions are active - and end a session after a short time like 5 minutes!) witty -- GMX - Die Kommunikationsplattform im Internet. http://www.gmx.net -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]
[PHP] online detection
Does anyone know how to detect when a user connects to the Internet similar to ICQ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]