[PHP] PHP License And Web Server Integration

2006-01-07 Thread Sammy Yu
Hi,
  I am considering using php as a scripting engine on a custom web
server for a commerical project.  Are there any licensing restriction
if I were to distribute the php5ts.dll?   Also, is there any guide
that would help me write a module to link php to a web server?

Thanks for your help.

Regards,
Sammy Yu

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] PHP with No Web Server?

2002-06-13 Thread Brian McGarvie

PHP is an application that generates HTML code similar to Perl. Which is what is 
served to the Client(Browser). Therefore no, you need to use IIS/Apache/other 
webserver in order to use PHP...

Unless you are using it as a scripting language for shell scripts... or using GTK to 
create graphical applications.

 -Original Message-
 From: Kevin Caporaso [mailto:[EMAIL PROTECTED]]
 Sent: 13 June 2002 5:00 PM
 To: [EMAIL PROTECTED]
 Subject: [PHP] PHP with No Web Server?
 
 
 
 In other words.. Can PHP serve as the Web Server or is 
 another web server
 required to handle the socket connections, etc.?
 
 Thanks for any response.
 $Kevin
 
 
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 
 

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] PHP with No Web Server?

2002-06-13 Thread Stuart Dallas

On Thursday, June 13, 2002, 5:00:23 PM, you wrote:
 In other words.. Can PHP serve as the Web Server or is another web server
 required to handle the socket connections, etc.?

PHP can serve as a web server, but you would need to write (find) the code to
do it - I'm sure there is plenty out there. However, to answer the question I
think you were asking, PHP does not come with a ready-to-run web server.

-- 
Stuart


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] PHP with No Web Server?

2002-06-13 Thread Clay Loveless

Here's a cool little PHP app ... Requires PHP to be compiled as a standalone
CGI with --enable-pcntl as a config option.

http://nanoweb.si.kz/

Nanoweb is a modular http server written in PHP 4.2.

Nanoweb's main features are :
*Decent performance
*HTTP/1.1 compliant
*CGI support 
*Name based virtual hosts
*Authentication
*Keep-alive connections
*Server Side Includes
*Apache combined and MySQL logging
*gzip compression support

Fun code. : )

-Clay


 From: Stuart Dallas [EMAIL PROTECTED]
 Organization: SharedServer.net
 Reply-To: Stuart Dallas [EMAIL PROTECTED]
 Date: Thu, 13 Jun 2002 17:08:41 +0100
 To: Kevin Caporaso [EMAIL PROTECTED]
 Cc: [EMAIL PROTECTED]
 Subject: Re: [PHP] PHP with No Web Server?
 
 On Thursday, June 13, 2002, 5:00:23 PM, you wrote:
 In other words.. Can PHP serve as the Web Server or is another web server
 required to handle the socket connections, etc.?
 
 PHP can serve as a web server, but you would need to write (find) the code to
 do it - I'm sure there is plenty out there. However, to answer the question I
 think you were asking, PHP does not come with a ready-to-run web server.
 
 -- 
 Stuart
 
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] PHP with No Web Server?

2002-06-13 Thread John Holmes

 In other words.. Can PHP serve as the Web Server or is another web
server
 required to handle the socket connections, etc.?
 
 Thanks for any response.
 $Kevin

Warning: Undefined variable $Kevin

You can run PHP on the command line without a web server, but it doesn't
do much good. For anyone else to see your PHP creations, yes, you need a
web server.

---John Holmes...


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] PHP with No Web Server?

2002-06-13 Thread Brian McGarvie

Would that work?

Surley it'd not be a particularly efficiant webserver if written in PHP?

Would be interesting to try.. I had a quick look for such code but could'nt see any... 
perhaps a PHP-GTK app could work I suppose... if you were that way inclined! :)

 -Original Message-
 From: Stuart Dallas [mailto:[EMAIL PROTECTED]]
 Sent: 13 June 2002 5:09 PM
 To: Kevin Caporaso
 Cc: [EMAIL PROTECTED]
 Subject: Re: [PHP] PHP with No Web Server?
 
 
 On Thursday, June 13, 2002, 5:00:23 PM, you wrote:
  In other words.. Can PHP serve as the Web Server or is 
 another web server
  required to handle the socket connections, etc.?
 
 PHP can serve as a web server, but you would need to write 
 (find) the code to
 do it - I'm sure there is plenty out there. However, to 
 answer the question I
 think you were asking, PHP does not come with a ready-to-run 
 web server.
 
 -- 
 Stuart
 
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 
 

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re[2]: [PHP] PHP with No Web Server?

2002-06-13 Thread Stuart Dallas

On Thursday, June 13, 2002 at 5:18:31 PM, you wrote:

 Would that work?

 Surley it'd not be a particularly efficiant webserver if written in PHP?

 Would be interesting to try.. I had a quick look for such code but could'nt see 
any... perhaps a PHP-GTK app could work I suppose... if you were that way inclined! :)

As previously mentioned, there is one: http://nanoweb.si.kz/

-- 
Stuart


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] PHP with No Web Server?

2002-06-13 Thread Miguel Cruz

On Thu, 13 Jun 2002, John Holmes wrote:
 In other words.. Can PHP serve as the Web Server or is another web
 server required to handle the socket connections, etc.?
 
 You can run PHP on the command line without a web server, but it doesn't
 do much good. For anyone else to see your PHP creations, yes, you need a
 web server.

If you're sufficiently masochistic you can write a web server in PHP.

miguel


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] PHP in Novell Web Server?

2001-10-03 Thread Marc

I was wondering if it is possible to create a configuration with Novell
Netware, Novell Web Server, PHP and Oracle. Does anybody have experience
with such a configuration?

Marc



-- 
PHP General 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] php under Oracle Web server pleaaaaaaaaaase!

2001-03-19 Thread kaab kaoutar

Hello

Is it possible to work with php under an oracle server ?
If yes can u point me to some manuals and articles
Thanks
_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.


-- 
PHP General 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]




Re: [PHP] php under Oracle Web server pleaaaaaaaaaase!

2001-03-19 Thread Frank Joerdens

On Mon, Mar 19, 2001 at 10:27:19AM -, kaab kaoutar wrote:
 Hello
 
 Is it possible to work with php under an oracle server ?
 If yes can u point me to some manuals and articles

AFAIK, the Oracle Web server is not Open Source; hence it would be
difficult to support it directly. You can always use the CGI or servlet
options though. All the stuff for other web servers besides Apache is in
the source tree under:

/usr/src/php-4.0.4/sapi/

Regards, Frank

-- 
PHP General 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]




Re: [PHP] php under Oracle Web server pleaaaaaaaaaase!

2001-03-19 Thread kaab kaoutar

HI!
DO U MEAN I SHOULD GIVE UP USING PHP under oracle web server ?
i used to work on php under PWS and apache!
However i've made a project with ASP under IIS but the client changed his 
mind and wanted to put it in his oracle web server !
i thought of using php translation from asp ! or at last as long as i master 
php code it again !
any idea pleaase!
Thanks


From: Frank Joerdens [EMAIL PROTECTED]
To: kaab kaoutar [EMAIL PROTECTED]
CC: [EMAIL PROTECTED]
Subject: Re: [PHP] php under Oracle Web server  pleaase!
Date: Mon, 19 Mar 2001 11:41:42 +0100

On Mon, Mar 19, 2001 at 10:27:19AM -, kaab kaoutar wrote:
  Hello
 
  Is it possible to work with php under an oracle server ?
  If yes can u point me to some manuals and articles

AFAIK, the Oracle Web server is not Open Source; hence it would be
difficult to support it directly. You can always use the CGI or servlet
options though. All the stuff for other web servers besides Apache is in
the source tree under:

/usr/src/php-4.0.4/sapi/

Regards, Frank

--
PHP General 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]


_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.


-- 
PHP General 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]




Re: [PHP] php under Oracle Web server pleaaaaaaaaaase!

2001-03-19 Thread techzeus

You can still use PHP with Oracle Webserver, www.php.net is the best
resource I found so far :)


- Original Message -
From: "kaab kaoutar" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Monday, March 19, 2001 6:56 PM
Subject: Re: [PHP] php under Oracle Web server pleaase!


 HI!
 DO U MEAN I SHOULD GIVE UP USING PHP under oracle web server ?
 i used to work on php under PWS and apache!
 However i've made a project with ASP under IIS but the client changed his
 mind and wanted to put it in his oracle web server !
 i thought of using php translation from asp ! or at last as long as i
master
 php code it again !
 any idea pleaase!
 Thanks


 From: Frank Joerdens [EMAIL PROTECTED]
 To: kaab kaoutar [EMAIL PROTECTED]
 CC: [EMAIL PROTECTED]
 Subject: Re: [PHP] php under Oracle Web server  pleaase!
 Date: Mon, 19 Mar 2001 11:41:42 +0100
 
 On Mon, Mar 19, 2001 at 10:27:19AM -, kaab kaoutar wrote:
   Hello
  
   Is it possible to work with php under an oracle server ?
   If yes can u point me to some manuals and articles
 
 AFAIK, the Oracle Web server is not Open Source; hence it would be
 difficult to support it directly. You can always use the CGI or servlet
 options though. All the stuff for other web servers besides Apache is in
 the source tree under:
 
 /usr/src/php-4.0.4/sapi/
 
 Regards, Frank
 
 --
 PHP General 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]
 

 _
 Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.


 --
 PHP General 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 General 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]