[PHP-WIN] FastCGI with IIS on Windows?

2006-09-20 Thread Aspen Olmsted
Hello, I need to use IIS on windows 2003 boxes and I am trying to figure out the best way to configure this. I believe fastcgi is the way to go but I am confused on the setup. There is an isapi_fgi.dll that works with 5.2? but not 5.1.x? What is php-cgi.exe? Is this a fastcgi with out the

Re: [PHP-WIN] A problem writting to a file

2006-09-20 Thread German Piqué
Well, I tried and all of you were right... but I tried it a days ago and it didn't worked!! :( That's fustrating... I don't understant why works now... Well... Thank you all :D 2006/9/20, Mikael Krogius (Winwap Technologies) <[EMAIL PROTECTED]>: > I don't know if its a windows php version pro

[PHP-WIN] SOLVED: Fwd: [PHP-WIN] Date problem

2006-09-20 Thread German Piqué
Thank you all. Sorry Mikael, i answered you instead to the mailing list. :/ -- Forwarded message -- From: German Piqué <[EMAIL PROTECTED]> Date: 20-sep-2006 11:14 Subject: Re: [PHP-WIN] Date problem To: [EMAIL PROTECTED] It works! Thnks... BTW, why the other solution doesn't wor

RE: [PHP-WIN] Date problem

2006-09-20 Thread Mikael Krogius \(Winwap Technologies\)
> -Original Message- > From: German Piqué > > $now = getdate(); > $stringNow = $now["year"] . $now["month"] . $now["mday"] . " - " > /*$now["hours"] . ":" . $now["minutes"] . ":" . $now["seconds"]*/; Have you tried doing something like this: $stringNow = date('Ymd').' - '.date('H:i:

RE: [PHP-WIN] A problem writting to a file

2006-09-20 Thread Mikael Krogius \(Winwap Technologies\)
> I don't know if its a windows php version problem, but when I > try to insert > the newline caracter: '\' like this: > > fputs($this->fileID,'\n'); > > it writes "\n" instead of creating a new line... Try doing this: $RowToWrite = $WriteThis."\r\n"; - Mikael -- PHP Windows Mailing List (

RE: [PHP-WIN] A problem writting to a file

2006-09-20 Thread SMITHT
fputs($this->fileID,"\n"); Note the "", instead of ''. Tom -Original Message- From: German Piqué [mailto:[EMAIL PROTECTED] Sent: 20 September 2006 09:37 To: php-windows Subject: [PHP-WIN] A problem writting to a file Well... I am making a class that realizes the efects of a logging sys

[PHP-WIN] Date problem

2006-09-20 Thread German Piqué
Like in the other mail, I have another problem with my logging class... I'm trying to get the current date to write it in each line it's writed but the process is stopped when I try to access the hours, the minutes or the seconds. $now = getdate(); $stringNow = $now["year"] . $now["month"]

[PHP-WIN] A problem writting to a file

2006-09-20 Thread German Piqué
Well... I am making a class that realizes the efects of a logging system, in order to be able to debug my scripts that works with cookies, but I foun a problem. I don't know if its a windows php version problem, but when I try to insert the newline caracter: '\' like this: fputs($this->fileID,'\