Re: RE: FW: [PHP-WIN] Spell checking w. PHP in Windows

2001-07-07 Thread Adam Allen
> > - The point I was trying to make that if you don't have time to read > > - through a manual, then why should you try to waste the time of others > > - to get them to TELL you what's in the manual? I agree completely - spend time trying to work through it yourself - it's not fair on those who

php-windows Digest 7 Jul 2001 13:13:31 -0000 Issue 640

2001-07-07 Thread php-windows-digest-help
php-windows Digest 7 Jul 2001 13:13:31 - Issue 640 Topics (messages 8152 through 8165): PHP404 on IIS5 : Internet Server Error Randomly 8152 by: vzion Re: Spell checking w. PHP in Windows 8153 by: Jesse S. Williams 8154 by: Flint Doungchak 8158 by: Thomas Da

[PHP-WIN] Pbm with msvcirt.dll on Windows95

2001-07-07 Thread anniemartial-BECKER
Hi, When I try to start php.exe, windows send me the following message : A required DLL, MSVCIRT.DLL is missing ... Please help me ... Adam -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To cont

[PHP-WIN] Error on viewing test.php

2001-07-07 Thread Wayne Hinch
Hi all, Please help I'm a newbie to PHP stuff. When I try and view test.php, it keeps saying that it carn't find the dynamic librarys. In PHP.INI it has all the default values and file locations but it just won't work. I'm running windows 2000 Professional with their server and PHP 4.0.4. Wayne

[PHP-WIN] Help! I'm getting pissed...

2001-07-07 Thread Toni Ranta
Why do I keep getting error messages such as: Warning: Unable to fork [rm -rf ../userlist/*] in c:\ohjelmatiedostot\apache group\apache\htdocs\chat\admin\admin.php on line 331 Warning: Unable to fork [ls ../users | grep -c ""] in c:\ohjelmatiedostot\apache group\apache\htdocs\chat\admin\admin.php

Re: [PHP-WIN] Help! I'm getting pissed...

2001-07-07 Thread Alain Samoun
It will make it easier if you can show the part of the code where you get the error. Exec is supposed to have been fixed in PHP4.06 Alain On Sat, Jul 07, 2001 at 10:57:44PM +0300, Toni Ranta wrote: > Why do I keep getting error messages such as: > > Warning: Unable to fork [rm -rf ../userlist/*]

Re: [PHP-WIN] Help! I'm getting pissed...

2001-07-07 Thread Adam Allen
Does exec not call a system call specific to the OS being run. I.e. if you're using exec on windows rm won't work will it (certainly not W98) anyway, I think it's a problem that you need to run the script on linux, which has an rm command, or replace the rm command with del. I've not used exec so

RE: FW: [PHP-WIN] Spell checking w. PHP in Windows

2001-07-07 Thread Jason Gan
If it's not in the PHP-Win distribution, there is a reason, and it is usually because the source is not thread-safe. PHP doesn't work properly with non-thread-safe extensions under IIS/Windows... -Original Message- From: Flint Doungchak [mailto:[EMAIL PROTECTED]] Sent: Saturday, 7 July

[PHP-WIN] Instilation problem

2001-07-07 Thread Justin Blake
I am running Sambar Server Pro v5.0 on Win ME. It requires php4 to run as isapi. I know my sambar config files are correct but I'm not sure about php. When I try to run any php file I get: Warning: Failed opening 'D://docs/bin/myfile.php' for inclusion (include_path='') in Unknown on line 0 p

php-windows Digest 8 Jul 2001 06:49:33 -0000 Issue 641

2001-07-07 Thread php-windows-digest-help
php-windows Digest 8 Jul 2001 06:49:33 - Issue 641 Topics (messages 8166 through 8173): Pbm with msvcirt.dll on Windows95 8166 by: anniemartial-BECKER Error on viewing test.php 8167 by: Wayne Hinch Help! I'm getting pissed... 8168 by: Toni Ranta 8169 by: Al

Re: [PHP-WIN] Help! I'm getting pissed...

2001-07-07 Thread John Catron
You are trying to run a Unix command on Windows. Won't work. Try replacing the rm with del and the "/" to a "\"/ "/" is the default path separator on Unix and "\" is the one for Windows. Be careful running scripts you know nothing about, especially if they involve "rm" or "del". John --- T