Re: [PHP-WIN] Problemas usuando OCI8

2001-10-03 Thread Philippe Saladin
You would try to copy php_oci8.dll in winnt\system32 and register it ? this is what I did to let it work. Regards, Philippe "Jacfeth Moreno B." <[EMAIL PROTECTED]> a écrit dans le message news: 01c14c52$a860ccf0$[EMAIL PROTECTED] Hello Jhon: Yes, the extension exist, but the problem is ther

[PHP-WIN] Re: LDAP versus DB

2001-10-03 Thread Jørg V. Bryne
You're basically rigth. LDAP is optimized for "read many, write few" while DB's are usually optimized for writing. It all depends on the configuration. You can get longer search-time from a misconfigured LDAP server than an optimized MySQL. I once transfered 24000 customers from MySQL to LDAP and

[PHP-WIN] crash on shutdown in php4ts.dll

2001-10-03 Thread Steve Yates
I have a problem that has been nagging me for a while. If I load any php page from my machine, when I shut down Windows I get an error in php4ts.dll. If I have not loaded any php pages then it shuts down fine. My test system: Windows 98 SE MS Personal Web Server PHP 4.06 I have tried both

[PHP-WIN] HTML form

2001-10-03 Thread Daniel Parsons
Hi, I am running PHP on WinNT 4 and using IE5.5 I have written a page that includes an HTML form which submits back to the script to allow the user to load hte same page with different parameters. Can anyone tell me why the submit button doesn't appear to do anything?? Do I need to force the pa

php-windows Digest 3 Oct 2001 22:51:54 -0000 Issue 787

2001-10-03 Thread php-windows-digest-help
php-windows Digest 3 Oct 2001 22:51:54 - Issue 787 Topics (messages 9661 through 9678): Don't open any PHP file under Win98 9661 by: Augusto Cesar Castoldi 9663 by: Phil Driscoll 9664 by: Augusto Cesar Castoldi Re: Trouble with Xitami+PHP+Win 9662 by: Lluís

[PHP-WIN] *.ini

2001-10-03 Thread John Taylor-Johnston
How can I access php.ini - or any *.ini - using PHP? [Session] session.save_path= E:\CD\PHP\sessiondata In Pascal, I would do something like this, for example: readstring('[Session]', Mystring); where Mystring becomes = "E:\CD\PHP\sessiondata" writestring('[Session]

RE: [PHP-WIN] Problemas usuando OCI8

2001-10-03 Thread Jacfeth Moreno B.
Hello Jhon: Yes, the extension exist, but the problem is there... Thank you. Tips? -Mensaje original- De: Asendorf, John [mailto:[EMAIL PROTECTED]] Enviado el: Miércoles, 03 de Octubre de 2001 03:31 p.m. Para: Jacfeth Moreno B.; [EMAIL PROTECTED] Asunto: RE: [PHP-WIN] Problemas usuan

[PHP-WIN] Receiving Microsoft Internet extension errors from script

2001-10-03 Thread Thomas
I'm having a problem with my php script when it tries to display db query's that are more involved (joining and what not). For the basic queries php doesn't have a problem but when I start trying to join tables and what not it returns an error to the browser saying: An Internal Error occurred in

[PHP-WIN] Internal Server Error --> should be a parser error!!

2001-10-03 Thread Augusto Cesar Castoldi
Hi... why my php (on Win2000) always do a error when there is a "parser error"? Somethings I take to much time to discover where I wrote wrong because the error don't say in which line is the error... thanks, Augusto Internal Server Error The server encountered an internal error or misconfig

[PHP-WIN] LDAP versus DB

2001-10-03 Thread Paul Meagher
I was wondering if someone could tell me what the advantages are of storing contact info in an LDAP repository are over storing it in, say, a MySQL repository. I am thinking it is mostly a speed and scalability issue - if I have a million people in an LDAP repository and need to find someone in i

RE: [PHP-WIN] Problemas usuando OCI8

2001-10-03 Thread Asendorf, John
Double check that the extension exists where it is supposed to exist. - John Asendorf - [EMAIL PROTECTED] Web Applications Developer http://www.lcounty.com - NEW FEATURES ADDED DAILY! Licking County, Ohio, USA 740-349-3631 Nullum magnum ingenium sine mixtura dementiae fuit >

RE: [PHP-WIN] Problemas usuando OCI8

2001-10-03 Thread Asendorf, John
To translate: Hello everyone. I installed php 4.0.6 without any problems, but I need to configure php to work with Oracle 8.1.7. I configured the extesion_dir but I get this error: Cannot load the dynamic link library "c:\php\extensions\php_oci8.dll." It was not specified in the process (?).

[PHP-WIN] Problemas usuando OCI8

2001-10-03 Thread Jacfeth Moreno B.
Hola todos. Instale el php 4.0.6 sin ningún problema, pero necesito configurar php para acceder un motor Oracle 8.1.7. Configure la directiva extesion_dir pero al cargar el script me registra el error: Imposible cargar la librería dinámica “c:\php\extensions\php_oci8.dll”. No se encontró el pr

[PHP-WIN] More COM questions...

2001-10-03 Thread Bob Kaehms
I've been playing with COM and PHP for quite a while now. I have some fairly basic scripts working, but can't seem to take advantage of MS Word for more than the most basic open/write/save operations. I've been using the VB help and record macro capabilities of word to attempt to get some things

[PHP-WIN] mcrypt()

2001-10-03 Thread Ouster
Does Mcrypt exist for Windows? -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

RE: [PHP-WIN] mysql news group

2001-10-03 Thread Robin Bolton
Try the official MySQL website: http://www.mysql.com/documentation/lists.html (These are mailing lists, not newsgroups) > -Original Message- > From: Stanley Cheung [mailto:[EMAIL PROTECTED]] > Sent: October 3, 2001 10:23 AM > To: [EMAIL PROTECTED] > Subject: [PHP-WIN] mysql news group

[PHP-WIN] mysql news group

2001-10-03 Thread Stanley Cheung
Hi all, can anyone tell me where has mysql news group? thx! Stanley -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP-WIN] Copying a web page to the server.

2001-10-03 Thread Ross Fleming
Hi, I'm trying to make a copy of a webpage, specified by the user (say, through a form) to the server itself. So far I've done this: *** $LocalFile="written.html"; $fp = @fopen($file,"r"); if ($fp) { $out=fopen ($LocalFile,"w"); while (!feof($fp)) { $tem

RE: [PHP-WIN] Re: PHP Application runnig in windows

2001-10-03 Thread Ross Fleming
I think he's looking for a way to execute a program on the browsers machine, exec() runs one a program on the server machine, not the local one. So far as I know, what you want to do is impossible, and in all honesty, I really hope that's the case. Web pages that start programs running on a user

Re: [PHP-WIN] Don't open any PHP file under Win98

2001-10-03 Thread Augusto Cesar Castoldi
No, nothing. But thanks, I just solve the problem. The proglem is that I cinfigured apache do run php as a CGI binary, I changed to work as a module, copy a php4s...dll for system diretory and now it's working. see you, August --- Phil Driscoll <[EMAIL PROTECTED]> escreveu: > On Wednesday 03

Re: [PHP-WIN] Don't open any PHP file under Win98

2001-10-03 Thread Phil Driscoll
On Wednesday 03 October 2001 12:48 pm, Augusto Cesar Castoldi wrote: > Hi... > > I just instaled the PHP on my Windows 98 but it's not > working. > > The Apache server can read html and xml files for > example. But when I try a PHP file, the broser stay > working but don't show nothing. Does 'vie

[PHP-WIN] Re: Trouble with Xitami+PHP+Win

2001-10-03 Thread Lluís de Yzaguirre
J6 wrote: > "Lluís De Yzaguirre" <[EMAIL PROTECTED]> wrote in message > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > I installed php in d:\php using the installer (it asked about the server, > and > > I choosed Xitami). > > The installer modified the xitami CFG file adding to it the FILTER:

[PHP-WIN] Don't open any PHP file under Win98

2001-10-03 Thread Augusto Cesar Castoldi
Hi... I just instaled the PHP on my Windows 98 but it's not working. The Apache server can read html and xml files for example. But when I try a PHP file, the broser stay working but don't show nothing. I just copy a PHP build for many librarys (like GD and DOMXML and mySQL). Any idea? thanks

php-windows Digest 3 Oct 2001 10:06:05 -0000 Issue 786

2001-10-03 Thread php-windows-digest-help
php-windows Digest 3 Oct 2001 10:06:05 - Issue 786 Topics (messages 9654 through 9660): Working with images 9654 by: Alex Busquets 9655 by: Alex Busquets 9658 by: Iván Milanez Castellanos PHP Application runnig in windows 9656 by: Sethereth 9657 by:

[PHP-WIN] $PHP_SELF incorrect contents

2001-10-03 Thread Tony Bailey
Running PHP 3.0.16 under Win2k and am having a problem with $PHP_SELF I've never seen before. As an example, the correct path for the current page (as shown by $SCRIPT_PATH) is: /calls the full current page is: /calls/index.php but if I use $PHP_SELF within that page it returns (ie. if used