php-windows Digest 29 Jan 2001 21:29:25 -0000 Issue 418

Topics (messages 5231 through 5243):

Re: Is it possible to CONVERT file formats?
        5231 by: James Duncan

Re: Jabber and PHP
        5232 by: Toby Butzon
        5233 by: James Duncan
        5234 by: Gonzalo Vera
        5235 by: James Duncan
        5237 by: Toby Butzon

install fails on Win98/PWS
        5236 by: Michael Gerholdt

Running PHP4 as module under Apache 1.3.14 and Win98se
        5238 by: Wayne Dunkel
        5239 by: Gonzalo Vera

Error in a remote computer with IIS and windows 2000
        5240 by: Gaspar ARias
        5241 by: Ryan Grove

Leads>?
        5242 by: leadsleadsmoreleads890.hotmail.com

About Error Message
        5243 by: M.Riadul Mannan

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]


----------------------------------------------------------------------


I looked at Acrobat a few years back. I seem to remember that Distiller can
be set-up like a server on a machine. You specify "in" and "out" directories
and anything copied into the "in" folder is detected by Distiller and
automatically converted to PDF format and stored in the "out" directory.
This should make it quite easy to write a PHP upload routine, move the
uploaded file into the "in" directory, wait for it to be processed and
collect the PDF file from the "out" directory. I'm sure Adobe has improved
Distiller greatly since I last looked at it (it was converting WP files to
PDF format for us).

James


-----Original Message-----
From: Angus Mann [mailto:[EMAIL PROTECTED]]
Sent: 26 January 2001 05:26
To: Tom Mathews
Cc: [EMAIL PROTECTED]
Subject: Re: [PHP-WIN] Is it possible to CONVERT file formats?

At 10:29 25/01/01 +0000, Tom Mathews wrote:

>This issue cropped up with us a little while ago, but in a slightly
different
>context.
>We have documents that are created using Word (PC users) and FrameMaker
(die
>hard Unix users that do not want anyone else to be able to edit their work
>without first taking a degree in pontlessness). All of these documents need
to
>be accessed by everyone over the intranet using a variety of O/S's and
>browsers.
>The solution - a 'pdf printer' function. You can either buy acrobat /
>distiller
>or some such, or if you're feeling energetic you can write your own, but
don't
>try this lightly (I wrote a PostScript printer driver from scratch in a
former
>life and spent about a year writing 20,000 lines of C code). Whatever you
>choose, just run this whenever a document is uploaded and then create a
>link to
>the pdf file (and if you don't want to edit it again, you can also delete
the
>original at this point). I've not yet found a browser or OS that you can't
get
>a decent pdf reader working with, as opposed to the word reader that
NetScape
>kindly crashes everytime that you try and use it (and don't think that you
>will
>get away with telling people to download the minute either - NetScape has a
>nasty habbit of changing all the carriage returns into line feeds when you
>donwload from a Unix hosted site to a PC, which means that you can't use
the
>doc when you get it onto your PC)
>
>Minutes are one of the applications that we use this technique for - the
group
>all write them in Word and then throw them at the upload filter which
>automatically creates the pdf and a link to this.

Hi Tom,

I was wondering what sort of solution you (and other list members) use for
the Word to PDF conversion? I've been looking at adding this as an extra
feature for our clients (clubs) to upload their monthly newsletters for
members to download/read. There's no way I'm going to allow them to post
Word documents (problems with fonts, and more importantly if anyone spreads
a Doc with a macro virus in it, I'll be the one who personally gets
blamed), and unfortunately getting people to save as a different format
from Word isn't much of an option either (they use graphics for headlines,
and in some cases it's too hard to explain to them how to save as a
different file format).

Obviously Acrobat Distiller seems to be the way to go, although all the
pages on the Adobe site mention using some form of GUI-based conversion
(usually for dragging and dropping files, or using it from within Word),
plus then I could run into expensive issues with licensing (not really
something I'd look forward to since this wouldn't create a single cent in
revenue for us).

Any suggestions or examples of how people in here are doing such
conversions would be greatly appreciated :)

Thanks,

Angus.





AFAIK there isn't.

--toby

James Duncan wrote:
> 
> Is there a Jabber module available for PHP that performs the same functions
> as the module Net::Jabber does for Perl?
> 
> Thanks
> 
> James
> 
> --
> 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]




Oh no... I really like the look of Jabber but I only know PHP, which I'm
still learning. I don't want to learn Perl just to access the Jabber server.
Any chance anyone can develop a PHP module for Jabber?

Thanks

James

-----Original Message-----
From: Toby Butzon [mailto:[EMAIL PROTECTED]]
Sent: 27 January 2001 16:53
To: James Duncan
Cc: [EMAIL PROTECTED]
Subject: Re: [PHP-WIN] Jabber and PHP

AFAIK there isn't.

--toby

James Duncan wrote:
>
> Is there a Jabber module available for PHP that performs the same
functions
> as the module Net::Jabber does for Perl?
>
> Thanks
>
> James
>
> --
> 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]





Mensaje de James; Sábado 27 de Enero de 2001, a las 10:30 AM.

What does Jabber do? Somebody who doesn't know Jabber might know some
way to get the same functions with other solutions.

 Gonzalo.

> Is there a Jabber module available for PHP that performs the same functions
> as the module Net::Jabber does for Perl?

> Thanks

> James






Jabber is an XML based server (check out www.jabber.org). Currently being
used as an Instant Message Server that is totally open source and able to
communicate with the ICQ, AIM, Yahoo, Jabber (obviously) and MSN chat
networks. I'm planning on setting up my own Jabber server. However, the
really interesting part is that you can use Jabber to send any XML document.
I have plans to use it to publish data from my MySQL database, etc.

A user sends a request from their Jabber client to my Jabber server, which
triggers my PHP script (if a PHP module existed!). The PHP script gathers
the required information from the MySQL database and converts it into Jabber
XML format (the Perl module helps do this) and passes it back to the Jabber
server that sends the data back to the requesting client. However, to do
this you need a module to access the Jabber server. One exists for Perl,
which makes communicating with the Jabber server very easy. I was hoping one
was available for PHP as well...

Thanks

James

-----Original Message-----
From: Gonzalo Vera [mailto:[EMAIL PROTECTED]]
Sent: 27 January 2001 16:59
To: James Duncan
Cc: [EMAIL PROTECTED]
Subject: Re: [PHP-WIN] Jabber and PHP

Mensaje de James; Sábado 27 de Enero de 2001, a las 10:30 AM.

What does Jabber do? Somebody who doesn't know Jabber might know some
way to get the same functions with other solutions.

 Gonzalo.

> Is there a Jabber module available for PHP that performs the same
functions
> as the module Net::Jabber does for Perl?

> Thanks

> James





A jabber module for PHP would be possible... but I don't think there's
enough demand for it (I might be interested in putting it together but
I'm completely swamped right now). You could use PHP's socket functions
without much loss, I would think.

--toby

James Duncan wrote:
> 
> Jabber is an XML based server (check out www.jabber.org). Currently being
> used as an Instant Message Server that is totally open source and able to
> communicate with the ICQ, AIM, Yahoo, Jabber (obviously) and MSN chat
> networks. I'm planning on setting up my own Jabber server. However, the
> really interesting part is that you can use Jabber to send any XML document.
> I have plans to use it to publish data from my MySQL database, etc.
> 
> A user sends a request from their Jabber client to my Jabber server, which
> triggers my PHP script (if a PHP module existed!). The PHP script gathers
> the required information from the MySQL database and converts it into Jabber
> XML format (the Perl module helps do this) and passes it back to the Jabber
> server that sends the data back to the requesting client. However, to do
> this you need a module to access the Jabber server. One exists for Perl,
> which makes communicating with the Jabber server very easy. I was hoping one
> was available for PHP as well...
> 
> Thanks
> 
> James
> 
> -----Original Message-----
> From: Gonzalo Vera [mailto:[EMAIL PROTECTED]]
> Sent: 27 January 2001 16:59
> To: James Duncan
> Cc: [EMAIL PROTECTED]
> Subject: Re: [PHP-WIN] Jabber and PHP
> 
> Mensaje de James; Sábado 27 de Enero de 2001, a las 10:30 AM.
> 
> What does Jabber do? Somebody who doesn't know Jabber might know some
> way to get the same functions with other solutions.
> 
>  Gonzalo.
> 
> > Is there a Jabber module available for PHP that performs the same
> functions
> > as the module Net::Jabber does for Perl?
> 
> > Thanks
> 
> > James
> 
> --
> 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]




Hi,

It looks like I've done everything by the book, from  php.ini file to
setting up virtual dir with execute privs.

But I continue to get this:

403.1 Forbidden: Execute Access Forbidden

This error can be caused if you try to execute a CGI, ISAPI, or other
executable program from a directory that does not allow programs to be
executed.

EXECUTE clearly is set.

Hints?
Thanks!
Michael Gerholdt





I was wondering if anyone could give me a detailed procedure for setting up 
PHP4 as a module in Apache 1.3.14.
The documentation only covers setting up PHP4 as a cgi executable. Maybe it 
is simply not desirable to set it up as a module? I was under the impression 
that it would improve performance.

Wayne
_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com





readme.first, in the php distribution covers the apache module
installation. It is in the root of your php tree, along with php.exe.

Good luck,

 Gonzalo.

> I was wondering if anyone could give me a detailed procedure for setting up 
> PHP4 as a module in Apache 1.3.14.
> The documentation only covers setting up PHP4 as a cgi executable. Maybe it 
> is simply not desirable to set it up as a module? I was under the impression 
> that it would improve performance.

> Wayne
> _________________________________________________________________
> Get your FREE download of MSN Explorer at http://explorer.msn.com






hello everyone


I'm configuring a webserver with IIS 5.0 and PHP 4.0 and when I did test with a local 
disk I don't have problems but when I try to execute remote scripts this send me a 
error the error is "CGI Error 
The specified CGI application misbehaved by not returning a complete set of HTTP 
headers. The headers it did return are:" and I don't found nothing in manuals 

could someone help me?

regards
Gaspar



Find the best deals on the web at AltaVista Shopping!
http://www.shopping.altavista.com




This is the error that the PHP CGI module returns under IIS when it
can't find the page you requested. Make sure the page you're trying to
access actually exists at the location you're requesting it from.

Of course, it could be that PHP doesn't handle remote scripts
properly...

-- 
Ryan Grove
[EMAIL PROTECTED]
http://wonko.com/
---------------------------------------------------------------------
If we weren't meant to eat animals, then why are they made of meat?


[Gaspar]
> I'm configuring a webserver with IIS 5.0 and PHP 4.0 and when I did
> test with a local disk I don't have problems but when I try to
> execute remote scripts this send me a error the error is "CGI Error
> The specified CGI application misbehaved by not returning a complete
> set of HTTP headers. The headers it did return are:" and I don't
> found nothing in manuals

> could someone help me?







BUY LEADS WHOLESALE FROM US FOR YOUR BUSINESS

http://www.geocities.com/leadoffers1900/leads.htm




Hi there

I have configured Apache and Php successfully. But i want to use YAZ support from PHP. 
I have
changed the  extension_dir =  and uncomment the extension = php_yaz.dll in the php.ini 
file.
And put the .ini file in the windows dir.

But I am getting the following Error message 

Fatal error: Call to undefined function: yaz_connect() in f:\myphp\try.php
on line 175
 
Its may be cause of failing to load the php_yaz.dll or any other possibility.

Could you pls help me out to fix this error msg.
 
 Thank you.



M.Riadul Mannan
School of Computing Science
Simon Fraser University
Burnaby, BC V5A1S6.
email: [EMAIL PROTECTED]



Reply via email to