[PHP] Connection pool extension?

2003-01-08 Thread Vinod Panicker
will reuse the existing connection Tx, Vinod. --- Vinod Panicker [EMAIL PROTECTED] Sr. Software Designer Geodesic Information Systems Ltd. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Connection pool extension?

2003-01-08 Thread Vinod Panicker
Hi, Thanks for the quick response - I am aware of PHP's support for sockets, but since I cant store persistent connection information in a PHP script I was looking out for a module Tx, Vinod. --- Vinod Panicker [EMAIL PROTECTED] Sr. Software Designer Geodesic

[PHP] Not able to connect to FTP server

2002-12-03 Thread Vinod
Hi friends, I am having a DSL Internet connectivity in our office and my PC is connected to Internet using a HTTP/FTP Proxy(192.168.0.10) and the browser(Mozilla) in my PC is configured to connect to net through the proxy When I tried to connect to our ftp site using the following script, I have

[PHP] Not able to connect to FTP server

2002-12-03 Thread Vinod
Hi friends, I am having a DSL Internet connectivity in our office and my PC is connected to Internet using a HTTP/FTP Proxy(192.168.0.10) and the browser(Mozilla) in my PC is configured to connect to net through the proxy When I tried to connect to our ftp site using the following script, I have

[PHP] How to connect Web database

2002-10-06 Thread Vinod Bhaskar
simultaneously. I will be grateful, if any body can mail me the connecting scripts, so that I can write php scripts to update the records from local database. or can any body suggest a solution on how to update the tables. Regards, Vinod. -- PHP General Mailing List (http://www.php.net

[PHP] How to connect Web Database from local machine

2002-10-06 Thread Vinod Bhaskar
Hi all, I am having MySQL database on web. (eg., at www.lmcr.net). What is the PHP script which I can connect the MySQL table from my Local machine. Can anybody help me. Regards, Vinod. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] dbf Help

2002-07-22 Thread Vinod Palan
php? Thanks Vinod -- Vinod Palan A Calypso Technology, Inc. [EMAIL PROTECTED] (415) 817-2463 Phone -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Calendars

2002-06-10 Thread Vinod Palan
hi , here is file calendar.php and it displayes calendar and also by you can diaplay content by selecting from database and displaying in the right month I hope this helps and if there is any thing else do get back to me. Vinod == ? //- This function is to do

RE: Re: [PHP] Full-Duplex communication

2002-05-28 Thread Vinod Panicker
Hi Miguel, I can go in for a php based listener, yes, but this system is already in a production environment and there will be major changes required to get it done. If I get a chance to redevelop this, that is probably what I'll go in for. Tx, Vinod. -Original Message- From: Miguel

Re: [PHP] Full-Duplex communication

2002-05-23 Thread Vinod Panicker
the packet. Guess the only way to go ahead is to try this out. Would someone pls pls pls write a PHP interface to libnet?? Tx, Vinod. On Thu, 23 May 2002 Evan Nemerson wrote : You're right- this is getting interesting ;) http://www.packetfactory.net/libnet/manual/4.html#s4.1.5 Unless I'm

Re: Re: [PHP] Full-Duplex communication

2002-05-23 Thread Vinod Panicker
in which i could avoid the polling and send data asynchronously to the client (Pls refer to my previous posts). Thats why i was looking at a way in which i could get hold of the socket to the client, so i could use it to send data directly. Tx, Vinod. On Fri, 24 May 2002 Miguel Cruz wrote

Re: Re: Re: [PHP] Full-Duplex communication

2002-05-22 Thread Vinod Panicker
, but which socket do i send it to? Thats been the question all along. I think this is getting really interesting :) Tx, Vinod. On Wed, 22 May 2002 Miguel Cruz wrote : I don't think you're going to get Apache to hand you the socket. However, you can write a program using the standalone (CGI) PHP

Re: Re: Re: [PHP] Full-Duplex communication

2002-05-22 Thread Vinod Panicker
. Tx, Vinod. On Wed, 22 May 2002 Richard Archer wrote : At 5:55 AM + 22/5/02, Vinod Panicker wrote: I want the ability to write to a socket thats been created earlier - i want to steal it from Apache, so that i can use it when and where i like. Why not just keep your script running

Re: [PHP] Mcrypt: Blowfish or Twofish or no fish? Part 2

2002-05-22 Thread Vinod Panicker
here - you cant use a keylength that is 2048 bits - it will give u the strongest encryption, but it will also take a lot of time. Tx, Vinod. On Wed, 22 May 2002 Jimmy Lantz wrote : Thanx for the suggestions! Someone mentioned that I could use MD5 and then encrypt the hash, how would I ever

Re: [PHP] Full-Duplex communication

2002-05-22 Thread Vinod Panicker
for the socket so that i can send data directly to the client, from a C++ binary or maybe another script. And to have the script running for hours, i would have to change the script timeout to a ludicrous setting, which would leave open many more possiblities for other problems. Tx, Vinod

Re: Re: [PHP] Full-Duplex communication

2002-05-22 Thread Vinod Panicker
:)) And looking at the pace at which the development and feature additions are going on, wont be long before we have our very own PHP-OS !!! (for all i know, it might be already there) Keep up the great work guys! Tx, Vinod. On Wed, 22 May 2002 Miguel Cruz wrote : On Wed, 22 May 2002, Miguel Cruz wrote

Re: RE: [PHP] Mcrypt: Blowfish or Twofish or no fish? part 3

2002-05-22 Thread Vinod Panicker
). It supports encryption using different key sizes as well as all modes. You can take your pick from ECB / CBC also. For binary file encryption, i would recommend ECB mode. For text files, it would be better that you use CBC mode. Tx, Vinod. On Wed, 22 May 2002 Jimmy Lantz wrote : I

Re: RE: RE: [PHP] Mcrypt: Blowfish or Twofish or no fish? part 3

2002-05-22 Thread Vinod Panicker
encrypted in independed blocks and its easier to crack it, but its faster than other modes. Tx, Vinod. On Wed, 22 May 2002 John Horton wrote : why use AES? Blowfish can have a 448 bit key size! Also, why use ebc mode with all the problems which come with it? JH -Original Message- From: Vinod

Re: RE: RE: RE: [PHP] Mcrypt: Blowfish or Twofish or no fish? part 3

2002-05-22 Thread Vinod Panicker
of binary data was successful, since the data wont necessarily make any sense. Tx, Vinod. On Wed, 22 May 2002 John Horton wrote : One of the reasons I like Blowfish is that I have used it for years, and there have been no successfull attempts to crack it. Why do you encrypt binary files in ebc and text

[PHP] Full-Duplex communication

2002-05-21 Thread Vinod Panicker
, i thought i'd give it a try. Does the solution sound very outlandish? Are there any pitfalls? And finally, how do i get hold of the socket? Tx in advance, Vinod. _ Click below to visit monsterindia.com and review jobs in India or Abroad

Re: Re: [PHP] Full-Duplex communication

2002-05-21 Thread Vinod Panicker
from apache. Someone somewhere knows how to get this done, i'm sure :) Possibly a hack into the PHP module can get this done, i'm open to suggestions. Tx, Vinod. On Tue, 21 May 2002 Bogdan Stancescu wrote : Hi! I'm looking for an answer to your questions as well, so if you do find a solution

Re: Re: [PHP] Full-Duplex communication

2002-05-21 Thread Vinod Panicker
of this is to reuse the connection by using a keep-alive connection. A still better improvement would be to remove the need for a poll altogether, by doing something (thats what my question is all about) on the server so that it can send data asynchronously to the server. Tx, Vinod. On Wed, 22 May

[PHP] Re: A new GUI client for mySQL

2002-05-20 Thread Vinod Palan
hi , I saw this software its just query analyzer I would like users to have first look @ http://www.anse.de/mysqlfront/ this is real good for managing mysql remotely Thanks Vinod -- Vinod Palan A Calypso Technology, Inc. [EMAIL PROTECTED] (415) 817-2463 Phone Ritesh Nadhani [EMAIL PROTECTED

[PHP] Re: textarea problem

2002-05-15 Thread Vinod Palan
Hi I think that would be problem of the method you are using. Can you tell if you were using post method? Thanks Vinod Tim Ward [EMAIL PROTECTED] wrote in message 01D892A483EAD511926A00500416D3C01C6B49@HUNTERS-MAIL">news:01D892A483EAD511926A00500416D3C01C6B49@HUNTERS-MAIL... Are you

[PHP] Date Function in Php

2002-05-15 Thread Vinod Palan
hi , Do any one have date functions like that we have in asp 1) Dateadd() 2) Datediff() etc? Thanks Vinod -- Vinod Palan A Calypso Technology, Inc. [EMAIL PROTECTED] (415) 817-2463 Phone -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: PHP editor (win)

2002-05-15 Thread Vinod Palan
Hi, I am using Editplus and I feel satisfied while using it. you can give a try.. Vinod -- Vinod Palan A Calypso Technology, Inc. [EMAIL PROTECTED] (415) 817-2463 Phone Juan Pablo Aqueveque [EMAIL PROTECTED] wrote in message 5.1.0.14.2.20020515102655.00a86040@www2"

[PHP] Re: Plz dont hate me for this

2002-05-15 Thread Vinod Palan
hey , there is one that I have used. http://free4sure.com/free-hosting.html you can give a try here.. Vinod -- Vinod Palan A Calypso Technology, Inc. [EMAIL PROTECTED] (415) 817-2463 Phone Salman Ahmed [EMAIL PROTECTED] wrote in message 001c01c1fc7e$1bb35160$4a8305ca@home">news:001c