php-windows Digest 9 Aug 2001 13:36:49 -0000 Issue 693
Topics (messages 8727 through 8730):
Apache and PHP. Lot's of missing DLL extientions. Why?
8727 by: Cato Larsen
8728 by: Svensson, B.A.T.
Re: sending POST data with header()?
8729 by: Michael Rudel
Re: PDFlib on PHP4
8730 by: Mike Flynn
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]
----------------------------------------------------------------------
When I run a database script with MySQL I get the following missing files:
c:\php\extensions\php_dbx.dll
c:\php\extensions\php_ifx.dll
c:\php\extensions\php_ingres.dll
c:\php\extensions\php_mcrypt.dll
c:\php\extensions\php_oci8.dll
c:\php\extensions\php_oracle.dll
c:\php\extensions\php_sybase_ct.dll
Where can I get these extensions? Im running the newest apache, php4 and
MySQL. My theory is that it's looking for PHP3 files. Am I right? If so, how
do I fix this with my Apache?
Best regards
Cato Larsen
>When I run a database script with MySQL I get the following
>missing files:
>
>c:\php\extensions\php_dbx.dll
>c:\php\extensions\php_ifx.dll
>c:\php\extensions\php_ingres.dll
>c:\php\extensions\php_mcrypt.dll
>c:\php\extensions\php_oci8.dll
>c:\php\extensions\php_oracle.dll
>c:\php\extensions\php_sybase_ct.dll
>
>Where can I get these extensions? Im running the newest apache, php4 and
>MySQL. My theory is that it's looking for PHP3 files. Am I right? If so,
how
>do I fix this with my Apache?
Those file are Dynamic Link Libraries (executable code)
to support connectivity to different types of databases.
Sine you are using MySQL you don't have to care about them.
Hi Hugh,
you could manually build your HTTP-Header (request). Then you
can add Posting-Data. Have a look @ fsockopen() and the
HTTP1.1 Specification.
Hope this helps.
Greetinx,
Mike
Michael Rudel
- Web-Development, Systemadministration -
Besuchen Sie uns am 20. und 21. August 2001 auf der
online-marketing-d�sseldorf in Halle 1 Stand E 16
_______________________________________________________________
Suchtreffer AG
Bleicherstra�e 20
D-78467 Konstanz
Germany
fon: +49-(0)7531-89207-17
fax: +49-(0)7531-89207-13
e-mail: mailto:[EMAIL PROTECTED]
internet: http://www.suchtreffer.de
_______________________________________________________________
> -----Original Message-----
> From: Hugh Bothwell [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, August 08, 2001 11:54 PM
> To: [EMAIL PROTECTED]
> Subject: [PHP-WIN] sending POST data with header()?
>
>
> I can redirect a page like
> header("Location: newurl.htm");
>
> but how can I extend this to pass POST variables along?
>
> (*NOT* GET vars, or cookies, or session vars, or
> include()ing the next file... I want to do it with POST
> vars. It's a long story.)
>
>
>
> --
> 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]
>
At 07:25 PM 8/8/2001 -0400, you wrote:
>I'm getting this message ...
>with the following code.
>
><snip>
><?php
>$len = filesize($filename);
>header("Content-type: application/pdf");
...
Well, it's kind of important to know what comes before the <?php where
you've <snip>ped it ... because if there's any kind of output whatsoever
before you begin the headers, then it's too late to append headers, and
that's why PHP will say that header information was already sent.
HTH.
-Mike