[PHP-WIN] Re: Q on PHP 4.3.2 & Apache 2.0.43

2003-08-01 Thread jsWalter
"Sek-Mun Wong" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Well, it works for me under 1.3.28, that might be the difference here. ?? > so let me walk through your apache config. > > I'm sure there are issues with the script to say the least, refering to my script? or th

php-windows Digest 2 Aug 2003 04:18:29 -0000 Issue 1849

2003-08-01 Thread php-windows-digest-help
php-windows Digest 2 Aug 2003 04:18:29 - Issue 1849 Topics (messages 20976 through 20984): IMAP extension active but does not seem to try to go out to the mail host 20976 by: Brad SNMP seems to time out returns 20977 by: Brad Re: Failure remote includes 20978 by: m.

[PHP-WIN] RE: Failure remote includes

2003-08-01 Thread m.r.
Thanks yes, fopen works on all remote files, no blocking. Guess then it's Apache version 2 making the trouble. Original Message--- Sek-Mun Wong wrote 2003-08-01 15:11:18 in reply to RE: Failure remote includes -- PHP Windows Mailing List (http://www.php.ne

[PHP-WIN] Re: Failure remote includes

2003-08-01 Thread Sek-Mun Wong
M.R., my educated guess is that somehow the include code works differently for php-sapi on apache2. It's not optimal, but unisntall apache2, reinstall 1.3.2x and test it out. (nuke it from orbit, it's the only way to be sure) "M.R." <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] As a

[PHP-WIN] Re: Apache or IIS

2003-08-01 Thread Sek-Mun Wong
true... I've always thought that if someone can code php or java, configuring a conf file should be (and is) a piece of cake. It suprises me to find many developers have a morbid fear (or maybe it's just laziness) of configuring servers by editing a conf file. I guess the division of labour and hyp

[PHP-WIN] RE: Failure remote includes

2003-08-01 Thread m.r.
As a follow up on my earlier reply, I found out how to read the socket and GET / HTTP, and that works on the remote files. However, a simple include doesn't. _Original message___ Sek-Mun Wong wrote August 1 2003 8:19 in reply to Re: Failure remote includes <..silly

[PHP-WIN] Re: Apache or IIS

2003-08-01 Thread Jon Phipps
What it boils down to is how comforatble are you editing the conf file by hand. If you run multiple virtual servers on multiple domains from one ip address then the setup in IIS is heaps easier than in apache. However, that being said, apache does not suffer from the server worms that IIS is su

[PHP-WIN] Re: Failure remote includes

2003-08-01 Thread Sek-Mun Wong
No problem... 2.0 gave me a lot of problems (2.0.47), not that I would run apache2/win32/php-sapi in production for the moment. as for fopen, if you're intent to try, then: $fp = fopen ("http://www.example.com/";, "r"); while (!feof($fp)) { $content .= fread($fp,1024); } fclose ($fp); print

[PHP-WIN] RE: Failure remote includes

2003-08-01 Thread m.r.
No, it's not silly, it's a good question, but indeed allow_url_fopen=On, it's On by default in PHP 4,3 installations. However, how to fopen eand read a socket via HTTP, I guess my knowlegde fails as how to accomplish this. I don't *need* apache 2, I guess, and might install 1.3.28, but for now d

[PHP-WIN] SNMP seems to time out returns

2003-08-01 Thread Brad
Windows 2K server with Apache. Added the SNMP module (now i don't get bad function calls!). Seems when I try to use the functions it trys to get to the router, but doesn't return information. Getting "no response" : Warning: snmprealwalk(): No response from escr1e in C:\WebDoc\snmpinfo.php on line

[PHP-WIN] IMAP extension active but does not seem to try to go out to the mail host

2003-08-01 Thread Brad
Added the IMAP extension.. when i try to use it, it seems that it isn't even trying to get to the host (no hang, timeout). it responds IMMEDIATELY with the message: Warning: imap_open(): Couldn't open stream {imap.xyssx.com:143}MAIN in xxx.php on line 76 of course the subsequent calls fail as the

php-windows Digest 1 Aug 2003 12:52:23 -0000 Issue 1848

2003-08-01 Thread php-windows-digest-help
php-windows Digest 1 Aug 2003 12:52:23 - Issue 1848 Topics (messages 20959 through 20975): Re: Q on PHP 4.3.2 & Apache 2.0.43 20959 by: jsWalter 20960 by: Sek-Mun Wong 20961 by: jsWalter 20962 by: Sek-Mun Wong 20963 by: Sek-Mun Wong 20964 by: j

[PHP-WIN] Unable To COnnect To FastCGI Server

2003-08-01 Thread Ashish Borkar
I am getting the following error message on my browser when i execute a PHP script. Unable T o Connect to FastCGI Server. What can be the Reason? Regards Ashish -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-WIN] I Need Some Help please

2003-08-01 Thread Mikey
(Keep your mails on the list as others may benefit) I am assuming that you already have a script that is doing a SELECT statement? If so, then modify your SELECT like so: SELECT * FROM test_table LIMIT 0, 4 ^^ This will bring back the first 4 rows of your query

RE: [PHP-WIN] I Need Some Help please

2003-08-01 Thread Mikey
It's not really a PHP solution, but if you add LIMIT off, rows (where off is the offset from the start (0) and rows is the number of rows you want returned) to your query, that should do what you require. HTH, Mikey > -Original Message- > From: Dean Hayes [mailto:[EMAIL PROTECTED] > Sent

RE: [PHP-WIN] PHP Script for Mysql

2003-08-01 Thread Mikey
All you need to do is insert the user into the user table in your main mysql database. Then, if you want to add them to your database, insert another line into the db table. The column names are fairly descriptive, so I won't go into any detail here... HTH, Mikey > -Original Message- >

[PHP-WIN] Re: Web pages not being displayed

2003-08-01 Thread Greg Whitehead
Hi All though i would share my knowledge with you i found after pulling the whole system apart and testing each module that the apache server 2.0.13 was causing my grief and by installing the apache 1.13 was able to solve the problem. thanks for the responses i got Greg Whitehead "Greg Whitehe