php-windows Digest 28 Aug 2002 03:58:05 -0000 Issue 1311

2002-08-27 Thread php-windows-digest-help
php-windows Digest 28 Aug 2002 03:58:05 - Issue 1311 Topics (messages 15534 through 15545): Re: PHP MSSQL versions 15534 by: Flint Doungchak 15539 by: David Hollister 15540 by: Christoph Grottolo Re: Virtual Remote Directories and IIS 15535 by: Jeremy Johnso

[PHP-WIN] SOAP Install

2002-08-27 Thread Kit Kerbel
Has anyone had any experience installing/working with SOAP for php on windows? I am trying to install it to work with credit card information and I am having trouble beyond belief. Thanx in advance, Kit _ Chat with friends onlin

[PHP-WIN] Re: php pages appear only on server machine, not in others computers with IIS

2002-08-27 Thread Elias Santiago
I assume you are using the CGI version of PHP (php.exe). Check that php.exe has permissions to allow the IUSR_SRVR user permission to Read/Execute php.exe. If not you will get the famous CGI error. Also check that in the app mappings you have the proper mapping of .php to php.exe. Also, remember

RE: [PHP-WIN] skipping quotes...

2002-08-27 Thread Ross Fleming
url encode it? At a guess that is, I haven't tried it. the funtion is either urlencode($myrow[copy]) or url_encode($myrow[copy]) not sure which. > -Original Message- > From: Afan Pasalic [mailto:[EMAIL PROTECTED]] > Sent: 27 August 2002 22:20 > To: [EMAIL PROTECTED] > Subject: [PHP-WIN]

[PHP-WIN] Sharing news or other data

2002-08-27 Thread Steen Rabol
Hi Iv'e been searching the net for a few hours without any luck Let's say that I have 3 sites one site have a database with news/articles. On the 2 others I would like to show headlines/news/articles from the database. How can I do that ? Thanks in advance Steen -- PHP Windows Mailing

[PHP-WIN] skipping quotes...

2002-08-27 Thread Afan Pasalic
Hi, My information from database: We've got "the beat" I'm trying to edit using form: but in form is shown just We've got. Nothing after first quote. The quote in front of 'the' screwed everything. How can I have a whole content, with quotes in form field? Thanks for any help. Afan

Re: [PHP-WIN] PHP MSSQL versions

2002-08-27 Thread Christoph Grottolo
Yes. You'll find the file in the dll folder in your php distribution. Copy it to your windows\system32 directory. See also http://ch.php.net/manual/en/ref.mssql.php Christoph David Hollister wrote: > Can someone confirm this? I don't think you need anything beyond the > php_mssql.dll to use MSS

RE: [PHP-WIN] PHP MSSQL versions

2002-08-27 Thread David Hollister
Can someone confirm this? I don't think you need anything beyond the php_mssql.dll to use MSSQL specific functions. I'm pretty sure I've done that in the past. I'm curious now. >Also, you need to make sure that you have the ms_sql client libraries installed on the local >machine where php r

[PHP-WIN] Re: Virtual Remote Directories and IIS

2002-08-27 Thread Christoph Grottolo
Try to set 'check that file exists' in the IIS admin interface on the panel where you map .php to php4isapi.dll. Christoph Jeremy Johnson wrote: > Thanks for the reply. > > The IUSR_MACHINENAME account does exist and does have the proper > permissions set. > > Any other ideas? > > Thanks again.

Re: [PHP-WIN] use VB DLL (COM object) with php

2002-08-27 Thread Luis Ferro
The ScriptingContext may only exist in Visual Studio languages as it is a very special way to program in the IIS with VB (and a way that i can't recommend at all due to speed, readability and portability problems). I personnaly would place all the business logic inside the VB Component and wou

Re: [PHP-WIN] RE: Virtual Remote Directories and IIS

2002-08-27 Thread Luis Ferro
The permissions must exist not only in the directory security but also in the share security and implying that the user "everyone" will work is a great streatch of the true (it won't work at all with the "everyone")... The permissions must be given explicitly to the IUSR_MACHINENAME and the IW

[PHP-WIN] RE: Virtual Remote Directories and IIS

2002-08-27 Thread Jeremy Johnson
Thanks for the reply. The IUSR_MACHINENAME account does exist and does have the proper permissions set. Any other ideas? Thanks again. .:j:. Michael wrote: - Probably your IUSR_MACHINENAME doesn't exist on the other machine, or do

RE: [PHP-WIN] PHP MSSQL versions

2002-08-27 Thread Flint Doungchak
Bob, >From what I understand, I don't understand it all that much, you need to make sure >that the correct version of PHP runs with the correlated version of the module (for >all modules not just mssql). When you download PHP from php.net (at least when you >download the zipped version), the m

php-windows Digest 27 Aug 2002 15:56:02 -0000 Issue 1310

2002-08-27 Thread php-windows-digest-help
php-windows Digest 27 Aug 2002 15:56:02 - Issue 1310 Topics (messages 15526 through 15533): Re: "Headers already sent" error message 15526 by: Deepak Kumar Vasudevan Re: Virtual Remote Directories and IIS 15527 by: Tracker1 Re: PHP with IIS 15528 by: Saci include(

[PHP-WIN] Connecting to FileMaker Server 5?

2002-08-27 Thread Andrew Ziem
Can someone recommend a method for connecting to FileMaker Server 5? This product doesn't seem to support XML (but later versions of the FMS do) or ODBC (I can't find drivers). Though made by the same company, it's a different product than FileMaker Pro. -- Andrew Ziem, Admin. Asst. The Springs

[PHP-WIN] use VB DLL (COM object) with php

2002-08-27 Thread Franky
I try to use a simple COM write in VB ... == Option Explicit Dim sc As ScriptingContext Sub OnStartPage(AspSC As ScriptingContext) Set sc = AspSC End Sub Public Function ecrire() sc.Response.Write "Voici mon super texte" End Functio

[PHP-WIN] PHP MSSQL versions

2002-08-27 Thread Bob Hiller -1
I download php_mssql.dll and added it to php.ini. When I open any php page I get this error MSSQL Unable to initialize module Module Compiled with Debug=0 Thread Safety=1 Module API=20020429 PHP Compiled with Debug=0 Thread Safety=1 Module API=20010901 These option must match What do I need

RE: [PHP-WIN] include() and file() on remote files

2002-08-27 Thread Ross Fleming
So far as I know, Linux etc does not have any problem with a statement such as include("http://www.yahoo.com";); However it is fairly simple to work around in Windows, I do it all the time. The following code will produce the same output: http://www.yahoo.com","r";); while(!feof($fp) && $fp) {

[PHP-WIN] include() and file() on remote files

2002-08-27 Thread Rudolf Staribacher
the include function does not work on Win32 platforms on remote files (http). I faced also problems with nested!!! file function on remote files (http). Does anybody know, if the lack of remote access of include() and file() could also occure on other OS? thx, Rudolf -- PHP Windows Mailing L

Re: [PHP-WIN] Re: PHP with IIS

2002-08-27 Thread Saci
look at you windows directory for a fille called php.ini open with a text editor ( notepad for example) and set the directory ant extension you want like this ( put the ones you want) ; Directory in which the loadable extensions (modules) reside. extension_dir = c:\php\extensions\ extension=php_