[PHP-WIN] Re: php pages appear only on server machine, not in others computers with IIS

2002-08-27 Thread Elias Santiago
I assume you are using the CGI version of PHP (php.exe). Check that php.exe has permissions to allow the IUSR_SRVR user permission to Read/Execute php.exe. If not you will get the famous CGI error. Also check that in the app mappings you have the proper mapping of .php to php.exe. Also, remember

[PHP-WIN] Re: Strange error with FastTemplate and IIS 5

2002-03-25 Thread Elias Santiago
Hi: I designed a website using FastTemplate 1.1.0. I used Apache for Windows 1.3.14 and PHP version 4.0.6 for development in a test-server. Everything went fine, and I am sure that all template variables were defined. Now, when I uploaded the finished site to the IIS 5.0 server running the S

[PHP-WIN] Strange error with FastTemplate and IIS 5

2002-03-15 Thread Elias Santiago
Hi: I designed a website using FastTemplate 1.1.0. I used Apache for Windows 1.3.14 and PHP version 4.0.6 for development in a test-server. Everything went fine, and I am sure that all template variables were defined. Now, when I uploaded the finished site to the IIS 5.0 server running the S

Re: [PHP-WIN] Re: please send your reply messages to PHP forum

2001-09-24 Thread Elias Santiago
; > Your post to the group will bounce if you have posted with either the 'From' > or 'Reply-To' fields containing a different address to that under which you > subscribed. > > Tony > > -Original Message- > From: Elias Santiago [mailto:[EMAIL PROTECT

[PHP-WIN] Re: please send your reply messages to PHP forum

2001-09-24 Thread Elias Santiago
Many times I have replied both to the news group and to the user who posted the last message, and the news group message sometimes gets bounced back. I read another message about others users also having this problem. "Burak Delice" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EM

[PHP-WIN] Re: Applying the memory-limit patch

2001-09-24 Thread Elias Santiago
php?download_file=php-4.0.6-memlimit.diff.gz&; > source_site=download.php.net > > -- > Gaylen > [EMAIL PROTECTED] > http://www.gaylenandmargie.com > PHP KISGB v1.2 Guestbook http://www.gaylenandmargie.com/publicscripts > > "Elias Santiago" <[EMAIL PROTECTED]> wrote

[PHP-WIN] Re: Applying the memory-limit patch

2001-09-20 Thread Elias Santiago
Sorry, what memory limit? "Gaylen Fraley" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I've looked for instructions on this but have been unable to find them. How > do you apply the memory-limit patch for 4.0.6 on Windows? > > -- > Gaylen > [EMAIL PROTECTED

Re: [PHP-WIN] IIS admin dlls?

2001-09-20 Thread Elias Santiago
Do you still have that PHP3 file? Maybe it could help in what I'm trying to accomplish... "Frank M. Kromann" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi, > > I have a documentation item on my todo list. I have no plans to extend the module with functi

Re: [PHP-WIN] Installation problem- Need help!

2001-09-19 Thread Elias Santiago
>From what Sridhar mentions, he already did uncomment the 'extension=php_*.dll' lines... Have you checked that the userid the webserver uses while running has access to the d:\php\extensions dir and files? This has bumped me in the face many times... "Alain Samoun" <[EMAIL PROTECTED]> wrote in

[PHP-WIN] IIS admin dlls?

2001-09-19 Thread Elias Santiago
Has anyone worked with the IIS func module? I'm interested to know if there is any progress with this module, I would like to manage IIS/NT users thru PHP and was hoping that this module could help me in this area. I notice that the php_iisfunc.dll is still included in the extentions directory.

Re: [PHP-WIN] The specified CGI application misbehaved by not returning a complete set of HTTP headers. The headers it did return are:

2001-08-18 Thread Elias Santiago
e path of the php.exe or PHP isapi dll. You should also see that the file exists on the specified URL. If not (or mispelled) IIS will respond with that message. Elias Santiago -- 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: [PHP] Re: [PHP-WIN] Installation failed ! Please Help!

2001-08-17 Thread Elias Santiago
ction quality) to use it on my sites. "Phil Driscoll" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > On Thursday 16 August 2001 7:35 pm, Elias Santiago wrote: > > I believe that IIS passes the script name to php.exe with the first

[PHP-WIN] Re: [PHP] Re: [PHP-WIN] Installation failed ! Please Help!

2001-08-16 Thread Elias Santiago
Found MS explanation! (at least the only place I've found the reason WHY %s %s must be used) http://support.microsoft.com/support/kb/articles/Q276/4/94.ASP I know, this is a KB article for Python, but look closely at the line that says: "(The two "%s" after the executable are required for conso

[PHP-WIN] Re: [PHP] Re: [PHP-WIN] Installation failed ! Please Help!

2001-08-16 Thread Elias Santiago
I've had PHP 3 to 4.01 and now 4.06 running under NT4 SP6a and now with W2K & IIS 5. From my experience, the %s %s is a requirement of IIS (not PHP). This according to Microsoft rules (apparently %s %s is CASE SENSITIVE): http://support.microsoft.com/support/kb/articles/Q245/2/25.ASP The %s %s h

[PHP-WIN] Re: problem with ereg_replace

2001-08-15 Thread Elias Santiago
Sorry, on the previous post $fnd = "a href=\"[^http)(mailto)#]"; should be: $fnd = "a href=\"[^(http)(mailto)#]"; -- 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

[PHP-WIN] problem with ereg_replace

2001-08-15 Thread Elias Santiago
I'm trying to replace all relative links in a string like: str$="" to str$="http://myhost.com/jan_may2000/files.html";>" I don't want to change any links that begining with http or mailto links. my code is: $str_old has the complete html body of the page (all content between tags), so none