php-windows Digest 2 May 2001 19:28:53 -0000 Issue 576

Topics (messages 7195 through 7219):

R: [PHP-WIN] ASPs cSTR function, WTF??!!!
        7195 by: Ermanno Iannacci

Re: SQL Error - create temporary table
        7196 by: Tom Mathews
        7204 by: John Morrison
        7215 by: John Morrison

Re: ASPs cSTR function, WTF??!!!
        7197 by: Jason Gan

PHP 4.0.5 COM bugs
        7198 by: Jason Gan
        7217 by: Alain Samoun

msvcr70.dll ?
        7199 by: Ermanno Iannacci
        7203 by: Ermanno Iannacci

crypt() not work really?
        7200 by: ÃÖ±â¼ö

use win dll / compiling for php
        7201 by: Andre Steffens

Re: MySQL problem
        7202 by: Giro De Roover

mysql dump
        7205 by: Giro De Roover
        7207 by: Johan Lundqvist
        7219 by: Giro De Roover

inserting a bit into mssql database
        7206 by: Kelvin Luck
        7211 by: Kelvin Luck

IE error
        7208 by: Piotr Pluciennik
        7209 by: Piotr Pluciennik

PHP 4.0.4 With Multiple Oracle Homes
        7210 by: Woods Ron Contr SA-ALC/FMIS
        7213 by: Joe Brown

Newbie needs help.
        7212 by: Michel Laine

php4 and iis5
        7214 by: Grady Morgan
        7218 by: Svensson, B.A.T.

Create Professional Network Design and Digrams without Limits
        7216 by: Leanne

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]


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



----- Original Message -----
From: r.gelstharp <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, May 01, 2001 5:54 PM
Subject: [PHP-WIN] ASPs cSTR function, WTF??!!!


> In the attempt at trying to convert my ASP pages to PHP, I've run across a
> little include file that contains a number of functions.
>
> this is the function I'm trying to emulate :-
>
> FUNCTION SELECTED( firstVal, secondVal )
>   IF cSTR( firstVal ) = cSTR( secondVal ) THEN
>     SELECTED = " SELECTED "
>   ELSE
>     SELECTED = ""
>   END IF
> END FUNCTION
>
> does anyone know what this cSTR function is and what it does? Furthermore,
> is there a PHP equivalent?
>
> Many thanks,
> Matt Bridger
>
>
>
> --
> 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]
>
>





Check with your ISP what access rights you have to the MySQL db - if you
don't have create table rights, then you won't be able to crete temporary
tables either.

Tom

John Morrison wrote:

> Hi
>
> I have cobbled together my first PHP/MySQL site which
> checks out OK on "localhost" (a WinMe/Xitami PC). But I
> just uploaded it to my ISP and I'm getting SQL Error
> reports when trying to create temp tables.
>
> SQL Error near "create temporary table tmptable select
> p.pic_id, title from picture as p, keycode_link as k where
> p.pic_id = k.pic_id and k.label_code = 1 and k.keyword_code
> = 5";
>
> These temp table commands work OK on my setup (MySQL
> 3.23.30) and I haven't yet figured out what is going wrong.
>
> John Morrison
>
> --
> 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]




Thanks for your reply Tom.  I will contact my ISP, although I guess I must 
have create table rights because I created the permanent db tables OK.

I have been browsing through the HTML MySQL manual and found, under "F MySQL 
change history/F.2.3  Changes in release 3.23.28", the following entry :-

"Fixed a fatal bug in CREATE TEMPORARY TABLE ... SELECT .... "

I always suspect my own code first when something doesn't work but I am 
wondering now if that bug may be the culprit?  I will phone my ISP now.

Cheers
John

In article <[EMAIL PROTECTED]>, Tom Mathews wrote:
> Subject: Re: [PHP-WIN] SQL Error - create temporary table
> 
> Check with your ISP what access rights you have to the MySQL db - if you
> don't have create table rights, then you won't be able to crete temporary
> tables either.
> 
> Tom
> 
> John Morrison wrote:
> 
> > Hi
> >
> > I have cobbled together my first PHP/MySQL site which
> > checks out OK on "localhost" (a WinMe/Xitami PC). But I
> > just uploaded it to my ISP and I'm getting SQL Error
> > reports when trying to create temp tables.
> >
> > SQL Error near "create temporary table tmptable select
> > p.pic_id, title from picture as p, keycode_link as k where
> > p.pic_id = k.pic_id and k.label_code = 1 and k.keyword_code
> > = 5";
> >
> > These temp table commands work OK on my setup (MySQL
> > 3.23.30) and I haven't yet figured out what is going wrong.
> >
> > John Morrison
> >
> > --







Hi again.

I thought it would be more satisfactory if I found out for myself what MySQL 
version my ISP is running so I tacked a query on to one of my forms to find 
out.  They are running 3.22.22.  That sounds pretty old??  Could that be the 
problem?  It /is/ going to be a problem if it is.  I am creating temp tables as 
a workaround for a subQuery.  There are three of them sequentially selecting a 
smaller and smaller data set.


In article <[EMAIL PROTECTED]>, John Morrison wrote:
> Thanks for your reply Tom.  I will contact my ISP, although I guess I must 
> have create table rights because I created the permanent db tables OK.
> 
> I have been browsing through the HTML MySQL manual and found, under "F MySQL 
> change history/F.2.3  Changes in release 3.23.28", the following entry :-
> 
> "Fixed a fatal bug in CREATE TEMPORARY TABLE ... SELECT .... "
> 
> I always suspect my own code first when something doesn't work but I am 
> wondering now if that bug may be the culprit?  I will phone my ISP now.
> 
> Cheers
> John
> 
> In article <[EMAIL PROTECTED]>, Tom Mathews wrote:
> > Subject: Re: [PHP-WIN] SQL Error - create temporary table
> > 
> > Check with your ISP what access rights you have to the MySQL db - if you
> > don't have create table rights, then you won't be able to crete temporary
> > tables either.
> > 
> > Tom
> > 
> > John Morrison wrote:
> > 
> > > Hi
> > >
> > > I have cobbled together my first PHP/MySQL site which
> > > checks out OK on "localhost" (a WinMe/Xitami PC). But I
> > > just uploaded it to my ISP and I'm getting SQL Error
> > > reports when trying to create temp tables.
> > >
> > > SQL Error near "create temporary table tmptable select
> > > p.pic_id, title from picture as p, keycode_link as k where
> > > p.pic_id = k.pic_id and k.label_code = 1 and k.keyword_code
> > > = 5";
> > >
> > > These temp table commands work OK on my setup (MySQL
> > > 3.23.30) and I haven't yet figured out what is going wrong.
> > >
> > > John Morrison
> > >
> > > --






The correct case should be CStr, the same as CInt
It is used for typecasting, but obviously Strings should not be used if you
can avoid it, because they are SLOW.

The PHP equivalent is to write:

function selected (&$firstval, &$secondval) {
        return (strcmp($firstval, $secondval) == 0) ? " SELECTED " : "";
}

This would typecast the inputs to type "string".

Alternatively, you can also do it this way (this is a type-insensitive
match):

function selected (&$firstval, &$secondval) {
        return ( $firstval == $secondval ) ? (" SELECTED ") : ("");
}

You need to typecast to string only when you use the type-sensitive match:

function selected (&$firstval, &$secondval) {
        return ( "$firstval" === "$secondval" ) ? (" SELECTED ") : ("");
}



-----Original Message-----
From: r.gelstharp [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, 2 May 2001 1:55 AM
To: [EMAIL PROTECTED]
Subject: ASPs cSTR function, WTF??!!!


In the attempt at trying to convert my ASP pages to PHP, I've run across a
little include file that contains a number of functions.

this is the function I'm trying to emulate :-

FUNCTION SELECTED( firstVal, secondVal )
  IF cSTR( firstVal ) = cSTR( secondVal ) THEN
    SELECTED = " SELECTED "
  ELSE
    SELECTED = ""
  END IF
END FUNCTION

does anyone know what this cSTR function is and what it does? Furthermore,
is there a PHP equivalent?

Many thanks,
Matt Bridger







I ran a brief ADODB test and it gave me an Access Violation Error.

PHP has encountered an Access Violation at 2474FF04

when parsing this line:

$fields = $rs->Fields;

where $rs is the recordset from the SQL database.


I got the following error messages when using MSXML Parser 3.01 to load an
XML string:

PHP has encountered an Access Violation at 011C2655

and

PHP has encountered an Access Violation at 011C265B





Yes, COM is completely broken in 4.05
Alain

On Wed, May 02, 2001 at 06:51:14PM +1000, Jason Gan wrote:
> I ran a brief ADODB test and it gave me an Access Violation Error.
> 
> PHP has encountered an Access Violation at 2474FF04
> 
> when parsing this line:
> 
> $fields = $rs->Fields;
> 
> where $rs is the recordset from the SQL database.
> 
> 
> I got the following error messages when using MSXML Parser 3.01 to load an
> XML string:
> 
> PHP has encountered an Access Violation at 011C2655
> 
> and
> 
> PHP has encountered an Access Violation at 011C265B
> 
> 
> -- 
> 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]




When I start Apache, I get a lot of errors saying "Could not find
msvcr70.dll". Which dll is this?
(NT4 Apache 1.3.17 PHP 4.0.5)





When I start Apache, I get a lot of errors saying "Could not find
msvcr70.dll". Which dll is this?
(NT4 Apache 1.3.17 PHP 4.0.5)





php 4.0.4pl1 work with crypt() well, but php4.0.5 for windows not work with crypt() 
really?

i need crypt(). please help me!!




Hi,

I want to use a "normal" win dll with php but I get the following warning:

PHP Warning: Invalid library (maybe not a PHP library) 'xxx.dll' in Unknown
on line 0

How can I get a PHP library, how to compile the C sources ???

Thanx






If you are using mysql shareware version, open amsprompt window and type cd
c:\mysql\bin and enter
then type mysqld~2.exe enter, then start mysql by doing mysql.exe. Otherwise
type dir in mysql\bin and look out what version of mysqld you have the
regulat one (mysqld) or opt.

good luck

Giro


"Chris" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> I was trying to create a database for PHP using MySQL with the command
> c:\mysql\bin>mysqladmin create database01 and I received the following
> error message
> "Can't connect to MySQL server on 'localhost' (10061)
> Check that mysql is running on localhost and that the port is 3306.
> You can check this by doing 'telnet localhost 3306'"
>
> The Apache server is running. What should I do now?
>
> --
> 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 everyone,

I am experiencing problem with mysql trying to import a text file with data
into a table, i am using phpmyadmin in order to do that, going to insert
textfiles into table and after choosing the file I want to upload i got this
error, any help will be appreciated.

Giro

Error
SQL-query:

LOAD DATA LOCAL INFILE 'c:\Windows\Temp\phpC021.TMP'  INTO TABLE my_contact
FIELDS TERMINATED BY ';' ENCLOSED BY '\"' ESCAPED BY '\\' LINES TERMINATED
BY '\n'
MySQL said: File 'c:windowstempphpc021.tmp' not found (Errcode: 2)








Hi Giro,

You'll have to type c:\\Windows\\Temp\\phpC021.TMP

/Johan

Giro De Roover wrote:
> 
> Hi everyone,
> 
> I am experiencing problem with mysql trying to import a text file with data
> into a table, i am using phpmyadmin in order to do that, going to insert
> textfiles into table and after choosing the file I want to upload i got this
> error, any help will be appreciated.
> 
> Giro
> 
> Error
> SQL-query:
> 
> LOAD DATA LOCAL INFILE 'c:\Windows\Temp\phpC021.TMP'  INTO TABLE my_contact
> FIELDS TERMINATED BY ';' ENCLOSED BY '\"' ESCAPED BY '\\' LINES TERMINATED
> BY '\n'
> MySQL said: File 'c:windowstempphpc021.tmp' not found (Errcode: 2)
> 
> --
> 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]




How is that done and where ??

"Johan Lundqvist" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Hi Giro,
>
> You'll have to type c:\\Windows\\Temp\\phpC021.TMP
>
> /Johan
>
> Giro De Roover wrote:
> >
> > Hi everyone,
> >
> > I am experiencing problem with mysql trying to import a text file with
data
> > into a table, i am using phpmyadmin in order to do that, going to insert
> > textfiles into table and after choosing the file I want to upload i got
this
> > error, any help will be appreciated.
> >
> > Giro
> >
> > Error
> > SQL-query:
> >
> > LOAD DATA LOCAL INFILE 'c:\Windows\Temp\phpC021.TMP'  INTO TABLE
my_contact
> > FIELDS TERMINATED BY ';' ENCLOSED BY '\"' ESCAPED BY '\\' LINES
TERMINATED
> > BY '\n'
> > MySQL said: File 'c:windowstempphpc021.tmp' not found (Errcode: 2)
> >
> > --
> > 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]
>
> --
> 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,
I am trying to insert into a column in a mssql 7 database with a datatype of
"bit"... I have tried to insert 0, 1, '0', '1' but get an sql error every
time ("Incorrect syntax near ...")... I also tried first using settype and
setting my variables type to boolean (which seems to me to be the nearest to
'bit' from the available choices) but this gave the same sql error...
Has anyone managed to do an insert like this? Are there any tricks I should
be aware of?
TIA,
Kelvin.





sorry, my mistake. the problem was elsewhere in my sql and nothing to with
inserting a "bit"... I've figured it out now,
Cheers,
Kelvin.

-----Original Message-----
From: Kelvin Luck [mailto:[EMAIL PROTECTED]]
Sent: 02 May 2001 12:26
To: php recieve
Subject: [PHP-WIN] inserting a bit into mssql database


Hi,
I am trying to insert into a column in a mssql 7 database with a datatype of
"bit"... I have tried to insert 0, 1, '0', '1' but get an sql error every
time ("Incorrect syntax near ...")... I also tried first using settype and
setting my variables type to boolean (which seems to me to be the nearest to
'bit' from the available choices) but this gave the same sql error...
Has anyone managed to do an insert like this? Are there any tricks I should
be aware of?
TIA,
Kelvin.


--
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 everyone,

I'm using php 4.04pl with Netscape FastTrack Server
3.0 om Windows NT 4.0 platform.

With Netscape Navigator 4.x everything is working
fine. Page is correctly displayed. Problem doesn't
exist also with IE 5.0. When I use IE 4.0 the page is
loaded, then I've got message that browser cannot load
page because of the error. Code of this error is
800c0008. That's all the iformation...

When page is not php generated, problem doesn't exist
at all.

Have you got any idea what is going on?

Thx,
Piotr

____________________________________________________________
Do You Yahoo!?
Get your free @yahoo.co.uk address at http://mail.yahoo.co.uk
or your free @yahoo.ie address at http://mail.yahoo.ie




Hi,

I've already found an answer - bug in IE 4.0 connected
to transfer-chunk coding in HTTP 1.1 (RFC 2616).
Complete info about problem can be found in article
Q177231 at www.microsoft.com

All the best

Piotr

--- Piotr Pluciennik <[EMAIL PROTECTED]> wrote: >
Hi everyone,
> 
> I'm using php 4.04pl with Netscape FastTrack Server
> 3.0 om Windows NT 4.0 platform.
> 
> With Netscape Navigator 4.x everything is working
> fine. Page is correctly displayed. Problem doesn't
> exist also with IE 5.0. When I use IE 4.0 the page
> is
> loaded, then I've got message that browser cannot
> load
> page because of the error. Code of this error is
> 800c0008. That's all the iformation...
> 
> When page is not php generated, problem doesn't
> exist
> at all.
> 
> Have you got any idea what is going on?
> 
> Thx,
> Piotr
> 
>
____________________________________________________________
> Do You Yahoo!?
> Get your free @yahoo.co.uk address at
> http://mail.yahoo.co.uk
> or your free @yahoo.ie address at
> http://mail.yahoo.ie
> 
> -- 
> 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]
> 


____________________________________________________________
Do You Yahoo!?
Get your free @yahoo.co.uk address at http://mail.yahoo.co.uk
or your free @yahoo.ie address at http://mail.yahoo.ie




I know the php_oci8.dll works with Oracle 8.1.6 drivers, but has anyone ever
tried this on a server with multilple ORACLE HOMES?

One of our server apps cannot use the Oracle 8 drivers so we must continue
using the 7.3 Oracle client. I know Oracle 8i supports multiple homes so I
believe I can install 8i and keep it seperated from 7.3; but I suspect the
Oracle PHP driver may have some heartburn with two Oracle Homes.

Anyone have any ideas or suggestions?

Ron Woods
GAI




I find the whole concept of "oracle home" a nightmare.

Reguardless of my opinion, the main difference between oracle homes is the
location of executable files and the location of the TnsNames.ora file.

The PHP_OCI8 module is mostly just a client network interface.

As long as the PATH environment variable points to the appropriate set of
executables, all seems to work well, reguardless.  The rest is more or less
fluff.

However, setting the path can be a bit of a confusing issue with windows nt
running the webserver as a service.

The most viable solution may be to setup another 586 with linux running
PHP/webservices.   Is there any reason the same box must be both db server
and webserver?
"Woods Ron Contr SA-ALC/FMIS" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> I know the php_oci8.dll works with Oracle 8.1.6 drivers, but has anyone
ever
> tried this on a server with multilple ORACLE HOMES?
>
> One of our server apps cannot use the Oracle 8 drivers so we must continue
> using the 7.3 Oracle client. I know Oracle 8i supports multiple homes so I
> believe I can install 8i and keep it seperated from 7.3; but I suspect the
> Oracle PHP driver may have some heartburn with two Oracle Homes.
>
> Anyone have any ideas or suggestions?
>
> Ron Woods
> GAI
>
> --
> 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.

I have mentioned this problem before in a newsgroup, but the answers did
not help me solve it - So here i go again.

Why doesn't my national (swedish) characters show up correctly?
I get "TM" (as in trademark) instead of "Ö" (capital o with the two
dots) for example.

I have (on recommendation) experimented with the PHP function HTML
ENTITIES but it doesn't seem to make any difference.
Maybe i am using the function wrong?.
Is the problem located elsewhere - like in my imported MSAccess DB,
MySQL or PHP?


Background info:
I run PHP 4.04pl1 and MySQL 3.23.35 on a W98SE with WPS.
I have successfully exported one MS Access database, which i have
imported into MySQL.
I have managed to set up a form which submits a query to the DB and
simply print the result.
Below are my (unfinished) input / search forms. As you can see i have
experimented with the row "Foretag":

<html>
<body>
<form action=SQLsearchform2.php method=GET>
Kundnummer: <input type=text value="" name=kund_nr size=25 maxlength=25>

Postadress: <input type=text value="" name=postadress size=25
maxlength=25>
Företag: <input type=text value="" name=foretag size=25 maxlength=30>
<p>
<input type=submit>
</form>
</body>
</html>


<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1">
   <meta name="GENERATOR" content="Anteckningar [sv] (Win98; U)
[Microsoft]">
   <title>S&ouml;ksida</title>
</head>
<body>

<?php
mysql_connect (localhost,"root" , "");
   mysql_select_db (MyDB);
if ($kund_nr == "")
{$kund_nr = '%';}
if ($postadress == ""){
  $postadress = '%';
} else {
  $postadress = '%' . $postadress . '%';
}
if ($foretag == ""){
  $foretag = '%';
} else {
  $foretag = '%' . $foretag . '%';
}
$result = mysql_query ("SELECT * FROM Kunder
                         WHERE KundNr LIKE '$kund_nr%'
                         AND Postadress LIKE '$postadress%'
    AND Foretag LIKE '$foretag%'
    GROUP BY Foretag
                       ");
if ($row = mysql_fetch_array($result)) {
  print ("<b>Data. Sorterade på företag:</b>");
  print ("<P>");
do {
$orig = $row["Foretag"];
print ("<B>");
print ("<P>");
$trans = get_html_translation_table (HTML_ENTITIES);
$encoded = strtr( $orig, $trans);
print $encoded;
print ("</B>");
  print (" ");
  print $row["Division"];
  print (" ");
  print $row["TfnVaxel"];
  print (" ");
  print $row["Fax"];
  print (" ");
  print $row["Kundansvarig"];
  print (" ");
  print $row["Postadress"];
  print (" ");
  print $row["Besoksadress"];
  print (" ");
  print $row["Leveransadress"];
  print (" ");
  print $row["Postnummer"];
  print (" ");
  print $row["Ort"];
  print (" ");
  print $row["Land"];
  print (" ");
  print $row["Postgiro"];
  print (" ");
  print $row["Bankgiro"];
  print (" ");
  print $row["RegNr"];
  print (" ");
  print $row["KundNr"];
  print ("<P>");

} while($row = mysql_fetch_array($result));
} else {print "Sorry, no records were found!";}
echo "\nSearch complete.\n";
?>
</body>
</html>


This is a tiny piece from the MySQL import script:

INSERT INTO Kunder
VALUES (
     '10020',
     'Nya företaget AB',
     NULL,
     NULL,
     'Trevägen',
     NULL,
     '745 67',
     'VÄSTERÅS',
     NULL,
     '025-360000',
     '024-185679',
     NULL,
     NULL,
     NULL,
     NULL,
     NULL )\g


--

Michel Laine






I am trying to run php4 on my windows 2000 iis server. I can load php files 
withe the cgi version (php.exe), but when I try to use hp4isapi.dll i get 
the error "The specified module could not be found." How do I get this thing 
to work?

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





By making sure the DLL the system ask for is present in your access path! 
(That's basically what the error message ask you to do. :-/ )

>-----Original Message-----
>From: Grady Morgan
>Sent: Wednesday, May 02, 2001 5:24 PM
>To: [EMAIL PROTECTED]
>Subject: [PHP-WIN] php4 and iis5
>
>
>I am trying to run php4 on my windows 2000 iis server. I can load php files

>withe the cgi version (php.exe), but when I try to use hp4isapi.dll i get 
>the error "The specified module could not be found." How do I get this
thing 
>to work?
>
>Grady Morgan




--Remove Email Instructions---------------------------------
Your email address is used solely to keep you updated on Altima Technologies, 
products, updates, events and special offers.
If you prefer not to receive future email communications from Altima Technologies,
please click here to be removed from our email list: [EMAIL PROTECTED]
-----------------------------------------------------------------

NetZoom-Helps Create Professional Network Design and Digrams without Limits...
To see sample network diagrams/presentations created with NetZoom, 
please visit http://www.altimatech.com/altimatech/products/samplenetworks.htm 

You have a choice to receive Visio Stencils (VNE) too!

 Now there is an easy way to prepare dynamic network diagrams and proposals that
 really get the point across! Use NetZoom, an inexpensive solution starting at $99,
 to get detailed exact-replica images of your equipment in either Visio stencils or
 in a compact add-on to your favorite application including Microsoft Visio, Adobe 
Illustrator,
 Microsoft PowerPoint, CorelDRAW, FrontPage, and many others. 

NetZoom has over 35,000 updated detailed network equipment shapes 
representing over 750 manufacturers’ equipment. 
We take customer requests to draw equipment shapes not already in NetZoom and 
provide updated shapes via web download 24x7.
Visit http://www.altimatech.com for more information.

To download a FREE demo version of NetZoom,
 please visit:  http://www.altimatech.com/altimatech/products/demodownload.htm 

Best Regards,

Leanne Fink
Altima Technologies, Inc.  **The Leader in Network Diagramming Solutions**  
Roosevelt Glen Corporate Center
799 Roosevelt Road, Building 6
Glen Ellyn, IL 60137 USA
Phone:  630.790.0500
Fax:  630.790.9995
http://www.altimatech.com



Reply via email to