[PHP-WIN] Opening sockets

2002-02-24 Thread LaserJetter
I'm running GTK on Win32 and have made an app that connects to a server and downloads some data. I tested it over my LAN and it works fine, using both 10.0.0.1 and gethostbyname("amd") as the host in fsockopen(host, 80, 30) I've now tried running it over the internet, trying to connect to the serv

php-windows Digest 24 Feb 2002 13:21:53 -0000 Issue 1015

2002-02-24 Thread php-windows-digest-help
php-windows Digest 24 Feb 2002 13:21:53 - Issue 1015 Topics (messages 12238 through 12242): windows extension dlls 12238 by: R0bin 12241 by: alain samoun Re: Merging Arrays 12239 by: R0bin Re: Bad char Translation 12240 by: R0bin Opening sockets 12

[PHP-WIN] GD2 build

2002-02-24 Thread Joris Pinnoo
where can I find a PHP-build with the latest GD-functionality? -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] CHMOD

2002-02-24 Thread ChaoticWorks
i was reading a php book and it says on UNIX machines i must change the CHMOD to 666 or 777, how do i do this? i never heard of the CHMOD. thanks.

RE: [PHP-WIN] CHMOD

2002-02-24 Thread alain samoun
www.php.net [SEARCH FOR:] CHMOD [in the FUNCTIONS list:] http://www.php.net/manual/en/function.chmod.php A+ Alain -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Sunday, February 24, 2002 10:21 AM To: [EMAIL PROTECTED] Subject: [PHP-WIN] CHMOD i was reading a

Re: [PHP-WIN] CHMOD

2002-02-24 Thread ChaoticWorks
i put chmod ("index.php", 0777); in my index.php file and when i viewed it, it displayed "Warning: chmod failed: Operation not permitted" anyone know why that is?

Re: [PHP-WIN] CHMOD

2002-02-24 Thread Symeon Charalabides
> i put > > chmod ("index.php", 0777); > > in my index.php file and when i viewed it, it displayed > "Warning: chmod failed: Operation not permitted" > anyone know why that is? > chmod is a native Unix command - I doubt tha windows like/permit it. Also, some providers won't let you chmod th

Re: [PHP-WIN] CHMOD

2002-02-24 Thread ChaoticWorks
i have a unix host. thats why i am trying to get this CHMOD to work. Thanks.

RE: [PHP-WIN] CHMOD

2002-02-24 Thread alain samoun
Then post at [PHP-GENERAL]. Here it's for PHP on Windows. A+ Alain -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Sunday, February 24, 2002 10:57 AM To: [EMAIL PROTECTED] Subject: Re: [PHP-WIN] CHMOD i have a unix host. thats why i am trying to get this CH

[PHP-WIN] Re: Opening sockets

2002-02-24 Thread LaserJetter
Well, after browsing through the HTTP/1.1 standards I found that an optional header "Host" after the GET request could be used. I now write "GET /clientlogin.php?username=me&password=mypassword HTTP/1.0\r\nHost: www.lottery-machine.co.uk\r\n\r\n" to the open socket... and it works fine!!! "Las

[PHP-WIN] Unable to fork errors

2002-02-24 Thread Paul J. Smith
Hi, I'm sure this one has been asked a thousand times, but I can't find it in the list archives or the web, just lots of people with the same problem. I'm trying to execute a program from within a php script, I've tried system, exec, etc., but all are unable to fork. I belive this was a bug, bu

Re: [PHP-WIN] CHMOD

2002-02-24 Thread Pac mon
When you're at a unix console type this: chmod ### thefilename ###=the numbers for owner, group and global thefilename=the name of the file you want to change i was reading a php book and it says on UNIX machines i must change the CHMOD to 666 or 777, how do i do this? i never heard of the CHMO

[PHP-WIN] passthru(), system() and exec() - help please

2002-02-24 Thread Sviss Cobazor
Hi everyone, I'm running Win98/Apache/PHP 4.1.1/MySQL. Everything so far has been really smooth and I have had no problems at all. The function passthru() however is really killing me. I can't get it to work nor system() og exec(). So now I just wanted to know if anyone running the same combo as m

[PHP-WIN] cURL extension

2002-02-24 Thread Ignatius Teo
Hi, Has anyone been able to get cURL to work under windows? I've tried to load the cURL extension, but it causes Apache to crash on startup. What am I missing? On another extensions related issue: Has anyone been able to get GTK0.5 to work? I've followed the README for installing GTK0.5, it in

[PHP-WIN] Sending a file with fpassthru() or readfile(), causes IE to hang.

2002-02-24 Thread John Chronakis
Hello, I am using IIs 5 on windows 2k sp2 with php 4.1.1. There is a problem with the sctipt that follows and MSIE versions 5 to 6 Here is the description. A script sends a jpeg image to the client. It goes like this: -- $imgsrc = 'full path o

php-windows Digest 25 Feb 2002 02:42:39 -0000 Issue 1016

2002-02-24 Thread php-windows-digest-help
php-windows Digest 25 Feb 2002 02:42:39 - Issue 1016 Topics (messages 12243 through 12255): GD2 build 12243 by: Joris Pinnoo CHMOD 12244 by: ChaoticWorks.cs.com 12245 by: alain samoun 12246 by: ChaoticWorks.cs.com 12247 by: Symeon Charalabides

[PHP-WIN] php, xml, win32, encoding, bug?

2002-02-24 Thread Alexander Gräf
hi, when im using i get Sablotron error on line 1: unknown encoding 'ISO-8859-1' in on line ... but i think iso-8859-1, utf-8, etc. support must be build in. in addition, when i try to include an external xsl with or a xml file with "document()", no matter what encoding the target-file

RE: [PHP-WIN] passthru(), system() and exec() - help please

2002-02-24 Thread alain samoun
Show us the part of the script where you use these functions. A+ Alain -Original Message- From: Sviss Cobazor [mailto:[EMAIL PROTECTED]] Sent: Sunday, February 24, 2002 4:37 PM To: [EMAIL PROTECTED] Subject: [PHP-WIN] passthru(), system() and exec() - help please Hi everyone, I'm runni