php-windows Digest 16 Feb 2001 08:24:07 -0000 Issue 448

Topics (messages 5580 through 5588):

Apache PHP/Win98 Binaries?
        5580 by: Lee Goddard

New Homepage
        5581 by: Charles Williams \( CEO ACNS \)

Forgot something
        5582 by: Charles Williams \( CEO ACNS \)
        5583 by: Charles Williams \( CEO ACNS \)

Interbase/PHP Blob types
        5584 by: Ed Meyer

exec()
        5585 by: Barry

CGI error: incomplete headers?
        5586 by: Chaz Yoon

NetZoom for Network Diagramming!
        5587 by: netzoom.altimatech.com

About PDF
        5588 by: Antonio Lopez

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]


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



Does anyone have a URL of PHP4 compiled with the Apache EAPI?

I downloaded PHP4 for Windows, and get this message from Apache:

[Thu Feb 15 17:15:05 2001] [warn] Loaded DSO D:/Lang/php4/sapi/php4apache.dll uses 
plain Apache 1.3 API, this module might crash under EAPI! (please recompile it with 
-DEAPI)
[Thu Feb 15 17:15:05 2001] [warn] pid file d:/apache/modperlsrv/logs/httpd.pid 
overwritten -- Unclean shutdown of previous Apache run?

Thanks in anticipation,
Lee

-- 

Lee Goddard     <[EMAIL PROTECTED]>
-------------------------------------
Perl : XML : XSLT : XHTML / JS : Java

"Post-modernism....the meta-narrative that denies meta-narrative."
                                           - Cedric Watts, Sussex 1997




Just so you all know.  I just put up my new home page.

http://www.acns-online.com/chuck/index.php3

Stop by, take a look, and drop me a line telling me what you think.  Just
remember that it's new.

Chuck


==============================================
Charles Williams
(Owner)
Accent Computer & Network Services
Markt 2
D-95679 Waldershof
Tel: +49 (0) 9231 972670
Fax: +49 (0) 9231 972671
http://www.acns-online.com
GB/CS/O/U d-- -p+ c+++ l++ u- e+ m+ s++/ !n h---- f !g w++ t+ r x**
==============================================

**************Email Confidentiality Footer**************

The information contained in this email and any attachments is intended
for the named recipients only. It may contain privileged and confidential
information and if you are not the intended recipient, you must not copy,
distribute or take any action in reliance on it. If you have received this
email in error, please return it to the originator advising of the error
and delete all copies from your system.






Sorry but forgot to tell you guys I do have a PHP area set up.  Just
register and you can ask and answer questions there.  I will be keeping a
running FAQ on PHP solutions.

the url to the Samba area is:
http://www.acns-online.com/chuck/topics/op/topicsView/tid/22/

Chuck



==============================================
Charles Williams
(Owner)
Accent Computer & Network Services
Markt 2
D-95679 Waldershof
Tel: +49 (0) 9231 972670
Fax: +49 (0) 9231 972671
http://www.acns-online.com
GB/CS/O/U d-- -p+ c+++ l++ u- e+ m+ s++/ !n h---- f !g w++ t+ r x**
==============================================

**************Email Confidentiality Footer************** 

The information contained in this email and any attachments is intended 
for the named recipients only. It may contain privileged and confidential 
information and if you are not the intended recipient, you must not copy, 
distribute or take any action in reliance on it. If you have received this 
email in error, please return it to the originator advising of the error 
and delete all copies from your system. 






Sorry again but the url is for the PHP area and not the Samba area.  Long
day, don't laugh. ;)

Chuck

----- Original Message -----
From: "Charles Williams ( CEO ACNS )" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, February 16, 2001 12:27 AM
Subject: [PHP-WIN] Forgot something


> Sorry but forgot to tell you guys I do have a PHP area set up.  Just
> register and you can ask and answer questions there.  I will be keeping a
> running FAQ on PHP solutions.
>
> the url to the Samba area is:
> http://www.acns-online.com/chuck/topics/op/topicsView/tid/22/
>
> Chuck
>
>
>
> ==============================================
> Charles Williams
> (Owner)
> Accent Computer & Network Services
> Markt 2
> D-95679 Waldershof
> Tel: +49 (0) 9231 972670
> Fax: +49 (0) 9231 972671
> http://www.acns-online.com
> GB/CS/O/U d-- -p+ c+++ l++ u- e+ m+ s++/ !n h---- f !g w++ t+ r x**
> ==============================================
>
> **************Email Confidentiality Footer**************
>
> The information contained in this email and any attachments is intended
> for the named recipients only. It may contain privileged and confidential
> information and if you are not the intended recipient, you must not copy,
> distribute or take any action in reliance on it. If you have received this
> email in error, please return it to the originator advising of the error
> and delete all copies from your system.
>
>
>
> --
> 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]
>





I've seen some conversation on this list about blob types but never really an answer.  
I'm having the problem where I'm trying to insert text into a blob but I'm getting the 
error message:

Warning: Interbase: conversion error from string "BLOB" in filename on line 13

Here's more info about the table and sql I'm using

<------------------------------------------->
create table memo (
   id char(2) not null primary key,
   memo blob sub_type 1);

insert into memo (id, memo) values ('2', 'Sample Text');

<------------------------------------------->

I've been told to use:
insert into memo (id, memo) values (:id, :memo) and convert the variable to :memo but 
that doesn't work either - instead I get a parse error on line whatever.

If more info is needed, please let me know.  Thanks!

Ed Meyer
Smarts Broadcast Systems




Hi,
I am new here. I am working on my first real PHP project. I use Ora's
Website 2.5.8, php 4.04 Win cgi mode, NT4.

I have a prog to send email to many users.

If I invoke this from a PHP4 script, php waits for the mail program to
finish before it continues. This can be quite a long time.

I saw the note about redirecting output in the php help. When I try this in
Delphi, I get an I/O error and I have no way to tell if it is actually
redirecting anything or not.

I have solved the problem by having php start a little program which, in
turn, starts the bigger prog to send email. This works, php only waits
during the short time my little prog takes to invoke the big prog. But,
it's hokey.

Is there a way to tell php to "exec and continue" ?. I know it is easy in
Unix, but Win is different. Maybe it should be a special php4win Win command.

Thanks,
Barry.





I'm having a curious problem with PHP on IIS while setting up a message
board (Phorum) on IIS 5.0, SQL Server 2000, and PHP 4.0.4pl1 (latest). While
posting a message, post.php receives a POST, processes the passed data to
check for completeness, inserts a row into the database, and then redirects
the user via the header("Location .../list.php?f=1") function.  However,
once the redirect occurs, I receive the following message:

CGI Error
The specified CGI application misbehaved by not returning a complete set of
HTTP headers. The headers it did return are:

Now, I know this has been in the archives, and I checked it out. The thing
that's different for me is that when I refresh the page, it works just fine.
Somehow, the GET is different from the POST. Does anybody have any thoughts
on how I can fix this? Thanks.

Chaz





Network diagramming just became quicker, easier and more accurate! NetZoom network 
diagramming solutions starting at US$ 99!
-----------------------------------------------------------------
Altima is pleased to announce the release of NetZoom 3.0! Current NetZoom customers 
may upgrade to version 3.0 for free using their subscription!  

To download the demo version of NetZoom please click here: 
http://www.altimatech.com/altimatech/products/demodownload.htm

To see sample network diagrams created with NetZoom, please visit 
http://www.altimatech.com/altimatech/products/samplenetworks.htm 
-------------------------------------------------------
Now you can create accurate, detailed and sophisticated network diagrams while working 
in Visio (5.0 & 2000, all versions), PowerPoint, Actrix, Adobe Illustrator, CorelDRAW, 
netViz, SmartDraw, LanFlow, StarOffice, iGrafx, and many other software packages. For 
details on the different NetZoom products, please visit: 
http://www.altimatech.com/altimatech/products/index.htm.
-------------------------------------------------------
NetZoom contains 35,000+ vendor specific network equipment shapes from 750+ network 
equipment manufacturers including Cisco, Sun, Compaq, HP, Dell, IBM, Nortel, 3COM, 
Redback, Lucent, APC, Juniper, Foundry, Extreme, Chatsworth and many, many others. 
 
Included in the price of all NetZoom 2000 products and NetZoom VNE Stencils is a FREE 
one-year Equipment Update Subscription that allows you to download (24x7) all new 
equipment shapes AND any shapes that you request us to draw!  We update on a weekly 
basis (more if necessary) to make sure that you have all of the equipment shapes that 
you need in order to create great network diagrams!

ALL equipment shapes requested by NetZoom customers are fulfilled at no charge!
-------------------------------------------------------
Other NetZoom 2000 features include:
 
* All shapes have connection points on the ports.  This allows you to create very 
detailed and accurate diagrams!  
* Chassis/ card relationships to facilitate quick and accurate buildouts/designs!
* Innovative port level intelligence built into every equipment shape!
* Continuous 24x7 web based access to new/updated equipment shapes via web-based 
download!
-------------------------------------------------------
VISIO USERS--YOU NOW HAVE TWO GREAT OPTIONS!  
(Please visit http://www.altimatech.com/altimatech/products/visio_products.htm for 
more details on NetZoom VNE Stencils and NetZoom 2000 for Visio)

At Altima, we are very serious about becoming your trusted partner for network 
diagramming.  In order to serve you better, we have instituted the following:

1. The NetZoom Guarantee (http://www.altimatech.com/altimatech/products/guarantee.htm)
2. Live customer service and free technical support between 8:30-5:30 PM Central Time 
(US), Monday through Friday.  Please call 630.790.0500 or send email to: 
[EMAIL PROTECTED]
3. A partnership program with leading equipment manufacturers to make sure that their 
equipment is current and accurate.

Buy NetZoom today (http://www.altimatech.com/altimatech/purchase/index.htm) and see 
why it is used and endorsed by leading network equipment manufacturers!

NetZoom 2000 ... Incredible Functionality!   Incredible Content!   Incredible Value!

Best Regards,

Altima Technologies, Inc.
**The Leader in Network Diagramming Solutions**  
 
Contact Information:
Altima Technologies, Inc.
799 Roosevelt Road, Building 6
Glen Ellyn, IL 60137 USA
Phone:  630.790.0500
Fax:  630.790.9995
Email:  [EMAIL PROTECTED]
http://www.altimatech.com/
-----------------------------------------------------------------
If you prefer not to receive future email communications from Altima Technologies, 
Inc., please click here
mailto: [EMAIL PROTECTED]
Altima Technologies, Inc does not share your email information with other 
organizations. Your email address is used solely to keep you updated on Altima 
Technologies, Inc products, updates, events and special offers.
-----------------------------------------------------------------
Copyright (c) 2001 Altima Technologies, Inc.  All Rights Reserved.
NetZoom 2000, NetZoom Symbols, NetZoom VNE Stencils, and EQServer are trademarks 
Altima Technologies, Inc. The names of actual companies and products mentioned herein 
may be the trademarks of their respective owners.
-----------------------------------------------------------------






I´m making a Pdf document with Php.

Questions:

· ¿Can i make TABLES with Pdf?
  (Something like Html...)

· I'm going to write a text, but i don´t know the lenght of this text. What
i want is that Pdf breaks the line and jumps to the next line automatically.
  ¿How can i make this with Pdf functions?


· The function 'PDF_curveto' draws a curve around 4 points. I want to draw
a curve around N points.
¿How can i do that?


Thankyou very much for any help.

===================================================
Antonio López Luna
Ingeniería e Integración Avanzadas (Ingenia), S.A.
Parque Tecnológico de Andalucía
29590  - Málaga (Spain)
  
Tel. 34-952029300 Ext. 386
Fax. 34-952029309
Web: http://www.ingenia.es



Reply via email to