RE: [PHP-WIN] cannot add 'header' information

2004-06-17 Thread Svensson, B.A.T. (HKG)
Check your code again, anda again! Because somewhere you already starts to output something - hence the error messsage. Not /if/, but /when/ you are 115% sure you have no segment of code that been outputing some HTML, then your error message may be caused by (the failure of) shell execution of a co

Re: [PHP-WIN] php script error

2004-06-17 Thread Dascalu Marius
- Original Message - From: "susilo soewarno" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, June 18, 2004 8:56 AM Subject: [PHP-WIN] php script error > Can you help me, > > sometimes i got error message and it goes like this : > "Cannot add header information - headers already

RE: [PHP-WIN] cannot add 'header' information

2004-06-17 Thread Svensson, B.A.T. (HKG)
Are you 103% sure you haven't start to output some HTML code yet? -Original Message- From: susilo soewarno To: [EMAIL PROTECTED] Sent: 18-6-2004 7:54 Subject: [PHP-WIN] cannot add 'header' information Can you help me, sometimes i got error message and it goes like this : "Cannot add hea

[PHP-WIN] php script error

2004-06-17 Thread susilo soewarno
Can you help me, sometimes i got error message and it goes like this : "Cannot add header information - headers already sent by (output started at C:\phpnuke\html\mainfile.php:42) in C:\phpnuke\html\mainfile.php on line 171" For additional info, right now i'm using IIS not Apache Web Server Best

[PHP-WIN] cannot add 'header' information

2004-06-17 Thread susilo soewarno
Can you help me, sometimes i got error message and it goes like this : "Cannot add header information - headers already sent by (output started at C:\phpnuke\html\mainfile.php:42) in C:\phpnuke\html\mainfile.php on line 171" For additional info, right now i'm using IIS not Apache Web Server Best

Re: [PHP-WIN] PDF Library/Extention

2004-06-17 Thread Achilles Maroulis
What I use is pdflib in PHP 4.3.3 which comes for other languages as well. (http://www.pdflib.com, http://www.php.net/manual/en/ref.pdf.php) There is also ClibPDF which I haven't tried (http://www.fastio.com, http://www.php.net/manual/en/ref.cpdf.php) Both extensions require license for commercial

[PHP-WIN] PDF Library/Extention

2004-06-17 Thread Trystano
Exactly what extension's do I use to generate PDF documents in PHP 4.2.3? Thanks Tryst

[PHP-WIN] Help !!! PHP + IngresII Database

2004-06-17 Thread PHP
> Hi, > > I'm using Microsoft Visual C++ to compile php adding IngresII Database > support and after download the source code what file should I put > "--with-ingres=DIR" ? Is it "configure" file or this one is used only to > compile the unix source. Should I have php_ingres.dll ? Where ? > Does

Re: [PHP-WIN] PHP + Win32 + FreeTDS + MSSQL

2004-06-17 Thread PHP
Hi, I'm using Microsoft Visual C++ to compile php adding IngresII Database support and after download the source code what file should I put "--with-ingres=DIR" ? Is it "configure" file or this one is used only to compile the unix source. Should I have php_ingres.dll ? Where ? Does anyone has a ph

[PHP-WIN] RE: session.save_path

2004-06-17 Thread Schalk
Hey there everyone I have been struggling with for a while, I hope someone can shed some light here. In my php.ini file I have my session.save_path set to c:\temp but even after restarting Apache it still somehow reads this in as /tmp. Is there somewhere else I should edit this? Kind Regard

Re: [PHP-WIN] PHP + Win32 + FreeTDS + MSSQL

2004-06-17 Thread Frank M. Kromann
Hi Mike, Not yet. The DBLIB version of FreeTDS does not work on Win32. I'm working on proting it but my time has been limited lately. - Frank > > Hi ! > > Is there any way on Win32 to use FreeTDS with php_mssql extension ? > > -Mike > > -- > PHP Windows Mailing List (http://www.php.net/) >

[PHP-WIN] PHP + Win32 + FreeTDS + MSSQL

2004-06-17 Thread Miha Nedok
Hi ! Is there any way on Win32 to use FreeTDS with php_mssql extension ? -Mike -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] Apache & PHP5 crash on reboot

2004-06-17 Thread David Reade
Apache 2.0.49 and PHP5.0.0.0RC3, on attempting to restart Apache, Windows is coming up with the following error... Faulting application Apache.exe, version 2.0.49.0, faulting module ntdll.dll, version 5.1.2600.1217, fault address 0x00033aed. Any ideas?

[PHP-WIN] PHP5 comes with older version of MySQL extension?

2004-06-17 Thread David Reade
Hello! I'm running Apache 2.0.49 with PHP 5.0.0.0RC3 which comes with MySQL Client API 3.23.57! I'm also running a MySQL Server at 4.0.20a-NT. Where can I find a newer MySQL Client API for PHP5? Regards, Dave. -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www

RE: [PHP-WIN] Self-calling script problem.

2004-06-17 Thread Gryffyn, Trevor
I don't see any $_GET['User_ID'] statements anywhere. When you pass a value via the URL like "scriptname.php?userid=", you either need to use $_GET[] or $_REQUEST[] to retrieve the data. That could be why it's being 'ignored' -TG > -Original Message- > From: Garry Grierson [mailto:[

[PHP-WIN] Self-calling script problem.

2004-06-17 Thread Garry Grierson
I have a script that asks a user to login using an ID and password, it then displays a login menu based on the users access type. This script works on another machine, but I have attempted to set up PHP on two new machines and keep getting the same problem. The script runs but when the user

RE: [PHP-WIN] Multiple file Delete

2004-06-17 Thread Gryffyn, Trevor
I'm not understanding the logic in all the loops and such here. And why comparing the first 5 characters? That seems kind of dangerous. Why don't you pass the name of the main file ($file = "image1.jpg" for example) then: 1. unlink $file in images 2. unlink $file in big 3. unlink $file . ".txt"

RE: [PHP-WIN] ASP to PHP converter?

2004-06-17 Thread Gryffyn, Trevor
Yeah, I was going to say that there are a ton of ASP -> PHP converters on http://www.guru.com and probably http://www.codelance.com too, but they're not free. The problem with converters is: If it's a small project Upside to conversion - you have some idea if it converted it reliably Downside to

RE: [PHP-WIN] Multiple file Delete

2004-06-17 Thread Svensson, B.A.T. (HKG)
That error message is oki, but use @ to silent error messag, like if (@unlink($delFile)) -Original Message- From: Lenny Davila To: [EMAIL PROTECTED] Sent: 16-6-2004 22:07 Subject: [PHP-WIN] Multiple file Delete I need to be able to delete multiple files from my web server by choo

RE: [PHP-WIN] ASP to PHP converter?

2004-06-17 Thread Svensson, B.A.T. (HKG)
> Does anyone know of reasonably good and reliable (and preferably > free) ASP to PHP converter? Well, I have this colleague of mine, however, I don't know if he is for free. :) -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php