Re: [PHP-WIN] . becomes _ when submitting page

2002-09-09 Thread Kjell Hansen
I understand that, but how will I be able to determine wheather the file was "Me.And.Jen.jpg" or "Me_And_Jen.jpg"?!? The . gets to be _ and both files will have the same name, but Windows tells me that they're different. Thanx for your effort though. SeaU Kjell > That's the reason I said reve

Re: [PHP-WIN] Intermittent Parse Error

2002-09-09 Thread Rasmus Lerdorf
> Are you serious about using Apache 1.3.6? Yowser that's old!!! I'd update > to Apache 2 and PHP 4.2.3 right away! Apache 1.3.x is fine. I'd upgrade to a later version of Apache 1.3 though. Apache 2 with PHP is not ready yet. -Rasmus -- PHP Windows Mailing List (http://www.php.net/) To uns

Re: [PHP-WIN] Intermittent Parse Error

2002-09-09 Thread php
Are you serious about using Apache 1.3.6? Yowser that's old!!! I'd update to Apache 2 and PHP 4.2.3 right away! I've had no problems on my Win2k (workstation) using Apache 2.0.39 and PHP 4.2.2. What are the specs on the hardware? And why'd you move from slackware? -Dash When I was a boy I wa

php-windows Digest 10 Sep 2002 03:44:02 -0000 Issue 1331

2002-09-09 Thread php-windows-digest-help
php-windows Digest 10 Sep 2002 03:44:02 - Issue 1331 Topics (messages 15725 through 15737): Re: GET / POST 15725 by: yasin inat argc and argv doesn't work! 15726 by: Christian Pichler 15727 by: Scott Carr Re: . becomes _ when submitting page 15728 by: Kjell

[PHP-WIN] Intermittent Parse Error

2002-09-09 Thread Michael Baron
I am running Apache 1.3.6 PHP 4.2.2 in Module mode on windows 2000. I just migrated this particular site from Slackware (Same Apache and php). I now get intermittent parse errors in random include files. It is as if during some of my user's requests, either the machine is not fast enough t

Re: [PHP-WIN] mail() --> "failed to recieve" error

2002-09-09 Thread Court Shrock
Sorry to bother everyone...found the causeSMTP on IIS5 doesn't bind to 127.0.0.1 by default. Changed php.ini to use the ip address of its interface and the everything worked. Found this out by putting the same script on a different server, but pointing smtp to the original server. On Mon, 2

[PHP-WIN] mail() --> "failed to recieve" error

2002-09-09 Thread Court Shrock
When trying to (and nothing more): getting the message "Failed to receive: in path_the_file_being_run". Tried php v4.1.2 and 4.2.3 with the same results. The box is Win2k server and IIS5. A SMTP relay is listening on localhost. The php.ini settings are set to point to 'localhost' (a valid

Re: [PHP-WIN] . becomes _ when submitting page

2002-09-09 Thread Scott Carr
That's the reason I said reverse the string and replace the first occurance. The only time it would be a problem is if they did not put an Extension. -- Scott Carr OpenOffice.org Documentation Maintainer http://documentation.openoffice.org/ Quoting Kjell Hansen <[EMAIL PROTECTED]>: > Sure Sco

Re: [PHP-WIN] . becomes _ when submitting page

2002-09-09 Thread Kjell Hansen
Well David, it's about having dots in the attribute names That's when things get goofed up. SeaU /Kjell - Original Message - From: "David Hollister" <[EMAIL PROTECTED]> To: "'Kjell Hansen'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Monday, September 09, 2002 9:59 PM Subject: RE:

[PHP-WIN] Problem with PHP on IIS

2002-09-09 Thread CK Yang
I run winxp using IIS 5.1 server, i installed the php binary and got it to work with the test script , however when i downloaded a script off the internet to try it can't write any files. I went on to try and give the write access to the specifying directories still nothing, i also changed the NT

Re: [PHP-WIN] . becomes _ when submitting page

2002-09-09 Thread Kjell Hansen
Sure Scott, so can I. The problem is when you have a filename like "My_Wife_and_I_at_sea.jpg" or "Me.And.Jen.jpg" or "Jen_and_Pete.gif" How can I be sure of what _ to change into . ? /Kjell Scott Carr wrote: > You can still do so. > > Just reverse the string. Replace the first occurance of "

RE: [PHP-WIN] . becomes _ when submitting page

2002-09-09 Thread David Hollister
If we are talking about a simple post, I don't see the issue. In the following code (as gobots.php), I can type in period characters all day long and it always returns just fine. What the heck are you guys talking about? ' ; ?> -Original Message- From: S

Re: [PHP-WIN] . becomes _ when submitting page

2002-09-09 Thread Scott Carr
You can still do so. Just reverse the string. Replace the first occurance of "_" with ".". Re-reverse the string. Now you have a Filename. -- Scott Carr OpenOffice.org Documentation Maintainer http://documentation.openoffice.org/ Quoting Kjell Hansen <[EMAIL PROTECTED]>: > Hmmm, I guess you

Re: [PHP-WIN] . becomes _ when submitting page

2002-09-09 Thread Kjell Hansen
Hmmm, I guess you're right. But I have some vague memories from useing dots in name attributes before. But that was with ASP & IIS... I have some excuse for using dots, it's Windows filenames. They come with dots and I can't change the attribute names because it's refering to the file. I guess I

Re: [PHP-WIN] argc and argv doesn't work!

2002-09-09 Thread Scott Carr
Use php-cli.exe. If you can't, check your php.ini file. argv and argc are usually turned off in the ini file. -- Scott Carr OpenOffice.org Documentation Maintainer http://documentation.openoffice.org/ Quoting Christian Pichler <[EMAIL PROTECTED]>: > Hey there, > > We would like to use the v

[PHP-WIN] argc and argv doesn't work!

2002-09-09 Thread Christian Pichler
Hey there, We would like to use the variables argc and argv. The problem is that argc always has the value 1, whether we pass no, one, two or more parameters. And in the array argv there is only the name of the program. We are working on a computer with Windows 2000 and a local installation of P

[PHP-WIN] Re: GET / POST

2002-09-09 Thread yasin inat
try to modify your php.ini where : variables_order = "EGPCS" change it to : variables_order = "GPCS" it will be useful when u were request a get/post var by using simple variable name but disadvantage is : if u use that script in www or

Re: [PHP-WIN] . becomes _ when submitting page

2002-09-09 Thread Brian 'Bex' Huff
Actually, this is a PHP feature, not a Javascript bug. The '.' character is very special in PHP, so it cannot be used for variable scoping like in VB or Java. The PHP engine will automaticly translate any '.' into a '_' to make it PHP-safe. The PEAR folks suggest using '::' to scope variabl

php-windows Digest 9 Sep 2002 12:50:04 -0000 Issue 1330

2002-09-09 Thread php-windows-digest-help
php-windows Digest 9 Sep 2002 12:50:04 - Issue 1330 Topics (messages 15719 through 15724): Re: mail() on W2K Pro 15719 by: Steve Yates Windows + mySQL + PHP4 question 15720 by: Kerry Kobashi 15721 by: php.l1te.net Re: exec() without waiting for completion in Win2k

[PHP-WIN] php & ejb?

2002-09-09 Thread Sandeep Murphy
hi, Though I have used PHP with Java Objects for sometime, I am keen to know whether anyone has tried using PHP to communicate with Enterprise JavaBeans?? if so, any suggestions?? thnx, sands -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.ph

RE: [PHP-WIN] Re: exec() without waiting for completion in Win2k

2002-09-09 Thread Rich Gray
Noel The task scheduler runs as the SYSTEM account which cannot access network resources - can you change the user account the service runs under if you run the original AT task scheduler or set up a new task and run it as a real user account if you use the new IE5 upwards task scheduler ... Ric