[PHP-WIN] forms question

2003-10-05 Thread Gareth Thomas
I'll start by saying that I know forms are 'bad'. However in this particular instance they suit the purpose very well for a utility that I need to write to enable a user to view one record and scroll through others while keeping the first in view. I've written lots of PHP, but none using frames.

Re: [PHP-WIN] upgrade imap dll problem

2003-09-22 Thread Gareth Thomas
oper folders for me. > > At 09:37 PM 9/22/2003, you wrote: > >And is that DLL in the folder specified? > > > >-Original Message- > >From: Gareth Thomas [mailto:[EMAIL PROTECTED] > >Sent: Monday, September 22, 2003 9:36 PM > >To: Mike Brum; [

Re: [PHP-WIN] upgrade imap dll problem

2003-09-22 Thread Gareth Thomas
DLL's are in WinNT, WinNT/System32 and in the directory pointed to by the extension_dir setting in php.ini. Gareth Thomas - Original Message - From: <[EMAIL PROTECTED]> To: "C-omputerSolutions Webmaster" <[EMAIL PROTECTED]> Cc: "Mike Brum" <[EMA

Re: [PHP-WIN] upgrade imap dll problem

2003-09-22 Thread Gareth Thomas
I should add that I am using IIS and not Apache... Gareth Thomas Mercury Software Solutions, Inc 805-984-6541 http://www.mercurysoft.com - Original Message - From: "C-omputerSolutions Webmaster" <[EMAIL PROTECTED]> To: "Gareth Thomas" <[EMAIL PROTECTED]&

Re: [PHP-WIN] upgrade imap dll problem

2003-09-22 Thread Gareth Thomas
Absolutely. Gareth Thomas Mercury Software Solutions, Inc 805-984-6541 http://www.mercurysoft.com - Original Message - From: "Mike Brum" <[EMAIL PROTECTED]> To: "'Gareth Thomas'" <[EMAIL PROTECTED]>; "'Mike Brum'" <[EMAIL

Re: [PHP-WIN] upgrade imap dll problem

2003-09-22 Thread Gareth Thomas
Mike, extension_dir does point to the correct directory. I do need the DLL since the application has an email module. Regards, Gareth Thomas - Original Message - From: "Mike Brum" <[EMAIL PROTECTED]> To: "'Gareth Thomas'" <[EMAIL PROTEC

[PHP-WIN] upgrade imap dll problem

2003-09-22 Thread Gareth Thomas
ry. I have tried modifying the php.ini file to point to the = correct path.. all to no avail. If anyone has any idea how to resolve = this issue I would be most grateful. Regards, Gareth Thomas

[PHP-WIN] CLI File Open Problem

2003-08-04 Thread Gareth Thomas
Hi, I am trying to write data to a text file on my Windows 2000 server using PHP at the command line. I am running PHP 4.3.2, and the script uses the 'touch' function to create the file (which works fine) but when I try and open the file to write to it and errors. Anyone any idea? I have checked t

[PHP-WIN] sockets with telnet

2003-07-15 Thread Gareth Thomas
Hi, I am trying to create a basic telnet client using sockets to connet to a linux box. I have written some sockets code previously with a server script that I developed myself and that worked fine. The problem I am getting is with Telnet (port 23) after making the socket connection successfully a

[PHP-WIN] socket timeout issue

2002-12-05 Thread Gareth Thomas
Hi, apparently this does not work with socket_read() but only with higher level socket functions (fread etc). However I have found a function called socket_set_nonblock(socketname) which apparently does something very similar, it prevents the socket_read from waiting to receive data. I simply b

[PHP-WIN] socket timeout

2002-12-05 Thread Gareth Thomas
Hi, I am attempting to timeout a socket_read() that is part of a handshaking process using socket_set_timeout(). Problem is it doesn't seem to work at all. If I switch off the handshaking write on the server side the read just sits there and doesn't time out at all. I have tried socket_set_timeout

[PHP-WIN] sockets problem

2002-11-21 Thread Gareth Thomas
Hi, I realise that sockets is still 'experimental' but any help will be much appreciated. I am developing a queue system to send commands across from a server to a client using sockets. Problem is that the I keep getting a 'connection reset by peer' error after the first command is sent. The se

[PHP-WIN] mysql command problem

2002-11-21 Thread Gareth Thomas
Hi, I have a Mysql command that when run in PHP does not work and yet when executed directly in MySQL works fine. The query is: $query = "UPDATE zone SET current_socket = '' WHERE current_socket LIKE 'R%'"; $result = mysql_query($query); Anyone have any idea why this wont work in PHP? Thanks i

[PHP-WIN] mysql loop problem

2002-11-20 Thread Gareth Thomas
Hi, I am trying to write some code to sit and wait for an entry in a table, once an entry is made it is processed and then the waiting loop begins again. Problem is that after a period of time the code just stops, almost like a timeout with no error message or any indication of why. This is the