Re: [PHP-WIN] Re: bug in class?

2001-09-09 Thread jlim
Hi Alain, The GPF crash could mean anything. Perhaps increasing the amount of memory in php.ini memory_limit=8M might help. Regards, John --- "Stressed spelled backwards is desserts." [EMAIL PROTECTED] NATSOFT MALAYSIA (60)3-706 1216 Visit this web site for Asian and

[PHP-WIN] Re: What's my problem with nl2br and a text file?

2001-09-09 Thread Brad Thomas
Yes! I've got this exact same problem I think it has something to do with the format of a text file not recording file break positions But that doesn't really explain why notepad can display them perfect :( "John Asendorf" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROT

Re: [PHP-WIN] Re: php4apache.dll not loading under W98/Apache/PHP4.0.4

2001-09-09 Thread Ignatius Teo
The main reason php4apache.dll will not load would be because there is something misconfigured in php.ini - probably one of the extensions are not being loaded. I would comment out the extensions in php.ini and try loading php4apache.dll again,then turn the extensions on one at a time and see what

[PHP-WIN] Using com_get() or com_propget()

2001-09-09 Thread Kelvin Param
Hello. How does one translate the following so that com_get() or com_propget() can be used in its place? This works: $fv=@$oRecordset->Fields[0]->Value; I want translate the above to this form: $fv=com_get(???,???); I am using the COM functions in PHP4 for Win32 to access the Active Directory.

Re: [PHP-WIN] Re: bug in class?

2001-09-09 Thread Alain Samoun
Hi John: I should have though of ADODB of course, so after more testing, it seems that the problem is not the number of functions, but their 'complexity', more probably the quantity of memory they take globally. It seems that it's like PHP is reserving some memory for each function and reaches a m

php-windows Digest 9 Sep 2001 20:55:24 -0000 Issue 746

2001-09-09 Thread php-windows-digest-help
php-windows Digest 9 Sep 2001 20:55:24 - Issue 746 Topics (messages 9263 through 9274): Re: bug in class? 9263 by: John Lim Closing Excel using DCOM and Release() 9264 by: Jeff Waldock 9274 by: Alain Samoun MKDIR on Windows? 9265 by: Niels Ulrik Reinwald

Re: [PHP-WIN] Closing Excel using DCOM and Release()

2001-09-09 Thread Alain Samoun
As it said, your COM connection is closed, in addition 'release' is not a member in the word object as well as in the excel object. Alain On Sun, Sep 09, 2001 at 02:20:35PM +0100, Jeff Waldock wrote: > I cannot seem to get PHP to recognise the Release function when tring to > close an instance o

[PHP-WIN] Re: PHP on W2K/IIS5 issues

2001-09-09 Thread Richard Powys
I had the same problem. I change my \ to / and I dont appear to get these error messages anymore. However that doesnt mean that its all working. HTH. "Roman Spanner" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I have install PHP 4.0.6 as per the install.

[PHP-WIN] Re: Apache / PHP / IIS & Win2K Installation problem

2001-09-09 Thread Richard Powys
Just like to say thanks for all the help by email and from here I finally got it working. I did a clean install of IIS and follwed instuctions from: www.umesd.k12.or.us/php/win32install.html I also set up the IP correctly and the home directory path, as I havnt used IIS before I didnt know that t

[PHP-WIN] User registration not working!

2001-09-09 Thread Chris Burwell
I am having some trouble with my user authentication system. I just can't get it to work the way i want it to. When i try to register with an e-mail that is already in the database it dooes not give me the proper error. Can someone help me out? I have included the registration file in th is messag

[PHP-WIN] mail(); Help

2001-09-09 Thread Chris Burwell
I am having a little trouble getting my script to work correctly. PHP send the mail out fine, but when i see the mail in my inbox, it have no from address. I have tryed to figure out why this is not working, but i have gad no sucess. I have enclosed the code below, any help is greatly appreciated!

[PHP-WIN] problem

2001-09-09 Thread seberrios
I'm getting this error mesagge with this file Method Not Allowed The requested method POST is not allowed for the URL /ejemplo-formulario-03.php4. is there something wrong with my PHP writing begin 666 ejemplo-formulario-06.php4 M/#\-"FEF("@D=F%R,3PP('Q\("1V87(Q/C$P*0T*"21V87(Q/2)M8

[PHP-WIN] problem!

2001-09-09 Thread seberrios
I'm getting an error mesaage trying to run PHP . -- 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] Re: MKDIR on Windows?

2001-09-09 Thread Niels Ulrik Reinwald
Cool. I set the filepermission on the server on the wwwroot. Thanks. "John Lim" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > The directory wwwroot is readonly to the webserver user. The fix is to > change your file permissions. > > bye, john > > "Niels Ulr

[PHP-WIN] Re: MKDIR on Windows?

2001-09-09 Thread John Lim
The directory wwwroot is readonly to the webserver user. The fix is to change your file permissions. bye, john "Niels Ulrik Reinwald" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > Hi, > > I have: > > > > mkdir("test", 0777); > > > > > which returns: > >

[PHP-WIN] MKDIR on Windows?

2001-09-09 Thread Niels Ulrik Reinwald
Hi, I have: mkdir("test", 0777); which returns: Warning: MkDir failed (Permission denied) in C:\Inetpub\wwwroot\t.php on line 3 Its run from my softorange.com How come? What to do? -- Med venlig hilsen Niels Ulrik Reinwald www.softorange.com [EMAIL PROTECTED] -- PHP Windows Mail

[PHP-WIN] Closing Excel using DCOM and Release()

2001-09-09 Thread Jeff Waldock
I cannot seem to get PHP to recognise the Release function when tring to close an instance of Excel or Word opened using DCOM. This is the error message returned.. Warning: Unable to lookup release: The object invoked has disconnected from its clients. in d:\wwwroot\studentdata\word.php on line

[PHP-WIN] Re: bug in class?

2001-09-09 Thread John Lim
Hi Alain, ADODB has more functions in a class and it doesn't crash as a CGI on Windows. Must be something else. Ciao, John "Alain Samoun" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I have a class with several functions, 20 at this time. If I add a new >

php-windows Digest 9 Sep 2001 08:19:52 -0000 Issue 745

2001-09-09 Thread php-windows-digest-help
php-windows Digest 9 Sep 2001 08:19:52 - Issue 745 Topics (messages 9257 through 9262): Re: Apache / PHP / IIS & Win2K Installation problem 9257 by: Rasmus Lerdorf Re: Php on Windows not running!!! Any help ??? 9258 by: Dennis Butler bug in class? 9259 by: alain s

[PHP-WIN] socket_set_timeout() on win32?

2001-09-09 Thread Jan Havel
Hi! Please help me. "Warning: socket_set_timeout() is not supported in this PHP build in ." Can I use function socket_set_timeout() on win32? In documentation is not any comment about availability on win32. I am finding informations about long time, but unsuccessful :( Thanks you for any