php-windows Digest 23 Jan 2004 20:20:21 -0000 Issue 2094
Topics (messages 22650 through 22652):
Re: OT -- Please point me in the direction of a good Apache2 SSL win32 how to.
22650 by: speedfreak.chello.be
Problem printing on server side
22651 by: Rino Billa
Re: fastcgi again on 4.3.X
22652 by: Shrock, Court
Administrivia:
To subscribe to the digest, e-mail:
[EMAIL PROTECTED]
To unsubscribe from the digest, e-mail:
[EMAIL PROTECTED]
To post to the list, e-mail:
[EMAIL PROTECTED]
----------------------------------------------------------------------
--- Begin Message ---
Anthony wrote:
> I've found may versions of the document found here
> http://raibledesigns.com/tomcat/ssl-howto.html and so far that seems to be
> mostly what I'm looking for, with one exception. I can't seem to find
> anything on modsss.org about Apache2. The link to modssl.org that is shown
> http://www.modssl.org/contrib/ lists a bunch of sources, but again, none for
> Apache2. So where do I look? I've spent a few hours looking so far. The
> only thing I can find is a few documents on compiling the whole thing from
> scratch. Is that the only way to do it? The binarys I need to get this
> working have got to be out there someplace. I can't imagine that lots of
> people don't try to do this on Winblows.
>
> Thanks for your help... and sorry for the off topic.
>
> BTW, this one seems to bee a good one for compiling the whole thing -->
> http://www.devside.net/web/server/win32/apache-ssl-zlib never done that
> before though, so I'm a little weary about it.
> - Anthony
Hi ,
Not a real howto, but you can find SSL aware win32 binaries for the latest
Apache 1.3.x and 2.x from http://hunter.campbus.com/ . I've been using these for
a long time now without any problems under win98 myself as a test / dev
environment. These packages come with the official Apache(2) mod_ssl
documentation... :)
Enjoy,
speedfreak
--- End Message ---
--- Begin Message ---
Hi,
Can print to a remote printer that is not connected to the server but in
another computer.
I use printer_list and i see the remote printer \\COMPAQ\Epson Stylus Color
900
...
$a=printer_list(PRINTER_ENUM_NETWORK | PRINTER_ENUM_REMOTE);
...
The script stampa.php run and not give me any error only a warning:
....
10 $handle = printer_open("\\\\COMPAQ\\EPSON Stylus Photo 900");
11 printer_write($handle, "Hi");
12 printer_close($handle);
...
Warning: couldn't allocate the printerjob [5] in
d:\siti\ordinazioni\stampa.php on line 11
In the server (on the computer where there is the apache) I'm shared the
remote printer
My configuration is:
Win Xp or Win 2000
apache 1.3.27
php 4.3.3
Thanks,
Rino
--- End Message ---
--- Begin Message ---
I am not sure of exactly what you want to accomplish, but you might be able
to do something with netcat. From the readme.txt:
A far more exciting thing to do is to get a quick shell going on a remote
machine by using the -l or "listen" option and the -e or "execute"
option. You run Netcat listening on particular port for a connection.
When a connection is made, Netcat executes the program of your choice
and connects the stdin and stdout of the program to the network connection.
nc -l -p 23 -t -e cmd.exe
[http://www.atstake.com/research/tools/network_utilities/]
so,
nc -l -p 81 -t -e php.exe
would route data coming in on port 81 to php.exe. If memory serves, if
php.exe does not get a file specified, it reads from standard input, so this
might help you.
> -----Original Message-----
> From: Rich Stupek [mailto:[EMAIL PROTECTED]
> Sent: Thursday, January 22, 2004 10:06 PM
> To: [EMAIL PROTECTED]
> Subject: [PHP-WIN] fastcgi again on 4.3.X
>
>
> Well still looking for the answer to how to run PHP 4.3.X as
> a standalone in a server farm. Anyone out there have the answer?
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
--- End Message ---