[PHP-WIN] Re: PHP/IIS5/MSSQL shows CGI Header Error

2002-09-26 Thread David Elliott
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hail David On 26 September 2002 at 13:52:09 +1000 (which was 04:52 where I live) David Redmond might have written > I am just wondering if anyone out there using PHP (4.2.3, bug also affects > previous versions and the latest CVS snapshot) with IIS5

[PHP-WIN] Unable to load dlls

2002-09-26 Thread Douglas F. Keim
I have tried to install PHP on XP Pro - Installed on D:\PHP. tried the http://localhost/test.php but keep getting the error messages that it was unable to load a whole bunch of dlls. This certainly is not a typical windows install. Too much manual stuff to do apparently. -- PHP Windows Mail

Re: [PHP-WIN] Unable to load dlls

2002-09-26 Thread toby z
hi doug ... silly it may sound but try copyin ur dlls to c:\windows or c:\windows\system32 n also u ll need a few in apache folder if ur using apache ... good luck toby --- "Douglas F. Keim" <[EMAIL PROTECTED]> wrote: > I have tried to install PHP on XP Pro - Installed on > D:\PHP.

[PHP-WIN] problem to open an oracle database

2002-09-26 Thread Rodrigo Reis da Rocha
Hi, I´m having problem to acess an oracle database: I´m using the general oracle functions (php_oracle.dll) Warning: Oracle: Connection Failed: ORA-12560: TNS:error or protocol adapter in d:\www\htdocs\ora_test.php on line 20 I have configured the ORACLE_HOME variable as well ORACLE_SID variable.

[PHP-WIN] first time installer...

2002-09-26 Thread Robert Pawlowicz
I'm trying to include php as an apache module. I've changed the httpd.conf file by including the LoadModule, AddModule and AddType. I have also changed the directory for the php4ts.dll file. I have noticed that when I ran the installer it loaded no sapi file into my php folder so the file refere

Re: [PHP-WIN] first time installer...

2002-09-26 Thread toby z
check for sapi folder where u initially downloaded php and copy it to the folder u ve installed php in also move ur dlls around abit ... copy them in win or win/sys32 folder and also in apache folder (where u ve actually installed apache ) hope this helps ... good luck ... toby

RE: [PHP-WIN] Re: PHP/IIS5/MSSQL shows CGI Header Error

2002-09-26 Thread Matt Kynaston
> > If anyone has encountered this problem before and found a > resolution for it, > > please post it here. As you may read from the bug thread, > the developers of > > PHP seemed to have passed this off as an IIS issue. Hrm... haven't seen the exact error described, but gave up on mssql_* functi

[PHP-WIN] header("location:...") through proxy?

2002-09-26 Thread Ignatius Reilly
Hello, I need to use header("location:some_url") from a cron job (to do some maintenance work on remote files) my problem is that there is a proxy between me and some_url, so the GET request fails Anybody knows how to do this? Thanks Ignatius

php-windows Digest 26 Sep 2002 17:03:56 -0000 Issue 1358

2002-09-26 Thread php-windows-digest-help
php-windows Digest 26 Sep 2002 17:03:56 - Issue 1358 Topics (messages 16012 through 16020): Microsoft Outlook Contacts can be managed by a PHP Interface 16012 by: Ernani Joppert Pontes Martins Re: PHP/IIS5/MSSQL shows CGI Header Error 16013 by: David Elliott 16019 b

[PHP-WIN] Windows Include

2002-09-26 Thread Jason
Can anyone help me? When i use the following include file: file globals.php $DB='whatever'; then reference it from another script with: I get $DB = 'whatever' being printed on the screen and the script cant recognise $DB (undefined) afterwards. Thanks for any help for a novice! -- PHP

[PHP-WIN] using x.php?k=$tot

2002-09-26 Thread kivanc urgancioglu
Hi Friends I’m using PWS under windows98 and http://kurkmen/adminshowall.php?k=$tot usage is not accepted.My aim is to display 5 images per page for example. $totalrows is the number of records in the database. $tot=0; $idx=1; while($tot < $totalrows){ echo("http://kurkmen/adminshowall.php?

Re: [PHP-WIN] Windows Include

2002-09-26 Thread Jim Hunter
Include files can be any type of text file. If you have PHP commands in the include file then you need to put the appropriate PHP tags in it. So your include would look like this: Then the $DB will get processed as a variable, not a text string. Jim ---Original Message---

[PHP-WIN] smtp authentication with mail()

2002-09-26 Thread Adam Staggenborg
Any one know how to submit smtp authentication when using the mail command in php?? -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] Re: header("location:...") through proxy?

2002-09-26 Thread Seairth Jacobs
Could you give more details? The "location" header is a response header only. Why would you be generating this from a cron job? --- Seairth Jacobs [EMAIL PROTECTED] "Ignatius Reilly" <[EMAIL PROTECTED]> wrote in message 006601c2657e$cf478250$015a@server">news:006601c2657e$cf478250$015

RE: [PHP-WIN] Re: PHP/IIS5/MSSQL shows CGI Header Error

2002-09-26 Thread David Redmond
Hi Matt, Looks like it is something screwy between the mssql functions. I've rewritten the pages to use an ADODB.Connection object and I haven't had this error since. David -Original Message- From: Matt Kynaston [mailto:[EMAIL PROTECTED]] Sent: Friday, 27 September 2002 1:25 AM To: [EM

[PHP-WIN] Re: smtp authentication with mail()

2002-09-26 Thread Manuel Lemos
Hello, On 09/26/2002 08:28 PM, Adam Staggenborg wrote: > Any one know how to submit smtp authentication when using the mail command > in php?? There is no way to configure SMTP authentication for the mail() function. You may want to try this other class that handles that for you: http://www.ph

Re: [PHP-WIN] Re: header("location:...") through proxy?

2002-09-26 Thread Ignatius Reilly
I use the GET call to pass URL parameters to a remote script that executes. So it is a form of a RPC. local script: header( "location:http://remote_script.php?foo=bar";) The remote script is with my ISP; it is a way for me to program scheduled tasks on a shared server at my ISP (obviously I do

php-windows Digest 27 Sep 2002 06:55:01 -0000 Issue 1359

2002-09-26 Thread php-windows-digest-help
php-windows Digest 27 Sep 2002 06:55:01 - Issue 1359 Topics (messages 16021 through 16028): Windows Include 16021 by: Jason 16023 by: Jim Hunter using x.php?k=$tot 16022 by: kivanc urgancioglu smtp authentication with mail() 16024 by: Adam Staggenborg