php-windows Digest 17 Jul 2004 01:51:54 -0000 Issue 2322
Topics (messages 24184 through 24196):
Re: PHP5
24184 by: Miha Nedok
24188 by: Raul IONESCU
Re: PHP + ODBC + Ingres_II
24185 by: Miha Nedok
Re: [PHP-mysql]Problems with PHP5
24186 by: Heiko Schillinger
24187 by: Ciprian Constantinescu
how to expire a page?
24189 by: Alejandro C�sar Garrammone
24190 by: Ron Stiemer
24191 by: Gryffyn, Trevor
PHP and RedBack COM objects
24192 by: Brian E
24193 by: Jason Barnett
PHP5 questions
24194 by: Jeff Hill
24195 by: Phil Driscoll
24196 by: Jeff Hill
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 ---
Try pecl.php.net. A lot of exts went there ( not being included in the
release bundle).
-Mike
On Fri, 16 Jul 2004, Raul IONESCU wrote:
Date: Fri, 16 Jul 2004 15:31:06 +0300
From: Raul IONESCU <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] PHP5
Does anyone know were I can find ZIP and PRINTER dll extensions for PHP5?
---------------------------------------------------------------
Incearca acum noul sistem de dating oferit de portalul acasa.ro
--- End Message ---
--- Begin Message ---
I founded what I nedd at http://kromann.info/
Anyway thanks for replay.......
.Try pecl.php.net. A lot of exts went there ( not being included in the
.release bundle).
.-Mike
.On Fri, 16 Jul 2004, Raul IONESCU wrote:
.> Date: Fri, 16 Jul 2004 15:31:06 +0300
.> From: Raul IONESCU <[EMAIL PROTECTED]>
.> To: [EMAIL PROTECTED]
.> Subject: [PHP-WIN] PHP5
.>
.> Does anyone know were I can find ZIP and PRINTER dll extensions for
PHP5?
.>
.>
.> ---------------------------------------------------------------
.> Incearca acum noul sistem de dating oferit de portalul acasa.ro
.>
.---------------------------------------------------------------
.Incearca acum noul sistem de dating oferit de portalul acasa.ro
---------------------------------------------------------------
Incearca acum noul sistem de dating oferit de portalul acasa.ro
--- End Message ---
--- Begin Message ---
Robert brought another one to the right thing !
ODBTP work very very good with MSSQL too, just a note. :)
-Mike
On Thu, 15 Jul 2004, php_beginner wrote:
Date: Thu, 15 Jul 2004 21:18:16 -0300
From: php_beginner <[EMAIL PROTECTED]>
To: Robert Twitty <[EMAIL PROTECTED]>
Cc: [EMAIL PROTECTED]
Subject: Re: [PHP-WIN] PHP + ODBC + Ingres_II
Hi Robert,
It works fine. You saved my life because I was going crazy with this problem
and now I am going to keep learning php.
Thanks once more,
Mauro
----- Original Message -----
From: "Robert Twitty" <[EMAIL PROTECTED]>
To: "php_beginner" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Thursday, July 15, 2004 9:38 AM
Subject: Re: [PHP-WIN] PHP + ODBC + Ingres_II
You may have better luck with ODBTP. You can get it at
http://odbtp.sourceforge.net.
Also, the crashes may be due to the fact that the free ODBC driver is not
thread-safe. If this is the case, then you should use odbtp_sconnect()
instead of odbtp_connect() to connect to the database.
-- bob
On Wed, 14 Jul 2004, php_beginner wrote:
Hi,
Does anyone uses PHP to access an Ingres Database ?
I created php_ingres.dll from ingres_ii module but when I enable it and
run
php.exe it crashes and give an error about a trashed file (symbol.tbl)
I tried to use Ingres ODBC from Computer Associates but it crashes too.
I
just have sucess when using ODBC Driver from Openlinksw.com but have to
pay
for it and I hope that I find a free ODBC driver that works with Ingres
and
PHP.
I work with Windows XP, Ingres 2.6 and PHP-4.3.7.
Heeeeeeelp me please.
Thanks once more,
Mauro
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--- End Message ---
--- Begin Message ---
php_mysql.dll refers to the mysql_drop_db funtion in libmysql.dll which
is actually not present.. neither in mysql v4.1.3 nor v4.0.20
Ciprian Constantinescu wrote:
"Unable to load dynamic library 'C:\php\ext\php_mysql.dll' - The
specified procedure could not be found"
I have put libmysql.dll in windows\system32 and in c:\php\ext and it still
gives me the same message. Please point me to the right direction or tell me
where to download from a good "libmysql.dll" file.
--- End Message ---
--- Begin Message ---
So... Can I use mysql or not?
"Heiko Schillinger" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> php_mysql.dll refers to the mysql_drop_db funtion in libmysql.dll which
> is actually not present.. neither in mysql v4.1.3 nor v4.0.20
>
> Ciprian Constantinescu wrote:
> > "Unable to load dynamic library 'C:\php\ext\php_mysql.dll' - The
> > specified procedure could not be found"
> >
> > I have put libmysql.dll in windows\system32 and in c:\php\ext and it
still
> > gives me the same message. Please point me to the right direction or
tell me
> > where to download from a good "libmysql.dll" file.
--- End Message ---
--- Begin Message ---
I want that if the user press the back button of the browser, the page expires. How
can I do that?.
Thx in advance.
Alex
--- End Message ---
--- Begin Message ---
Here ya go, just googled:
http://www.phpfreaks.com/tutorials/41/3.php
Greetings,
-Ron
-----Urspr�ngliche Nachricht-----
Von: Alejandro C�sar Garrammone [mailto:[EMAIL PROTECTED]
Gesendet: Freitag, 16. Juli 2004 16:34
An: [EMAIL PROTECTED]
Betreff: [PHP-WIN] how to expire a page?
I want that if the user press the back button of the browser, the page
expires. How can I do that?.
Thx in advance.
Alex
--- End Message ---
--- Begin Message ---
I just use this, seems to work ok. But there are a few ways to do it. Some browsers
pay attention to one tag and some to another. IE5 and 6 seem to like this one ok:
<head>
<title>Some Page Title</title>
<META HTTP-EQUIV="Pragma" Content="no-cache">
</head>
> -----Original Message-----
> From: Alejandro C�sar Garrammone [mailto:[EMAIL PROTECTED]
> Sent: Friday, July 16, 2004 10:34 AM
> To: [EMAIL PROTECTED]
> Subject: [PHP-WIN] how to expire a page?
>
>
> I want that if the user press the back button of the browser,
> the page expires. How can I do that?.
>
> Thx in advance.
>
> Alex
>
--- End Message ---
--- Begin Message ---
Hello.
I'm trying to access RedBack COM objects (Redback is a garbage DB that
one of my clients has purchased) through PHP rather than documented ASP.
I can Create the objects just fine and make the initial Calls to the
methods... but when I try to view the String results, I get Object types
returning. I am attaching an example code.
Thanks.
Brian
--- End Message ---
--- Begin Message ---
Hey Brian, can you just put the code inline? I didn't get the attachment.
Brian E wrote:
Hello.
I'm trying to access RedBack COM objects (Redback is a garbage DB that
one of my clients has purchased) through PHP rather than documented ASP.
I can Create the objects just fine and make the initial Calls to the
methods... but when I try to view the String results, I get Object types
returning. I am attaching an example code.
Thanks.
Brian
--- End Message ---
--- Begin Message ---
I hope someone will see this thru all the spam (isn't there any way to
control that?!)
I have a server running Win2K server and Sybase EAServer (aka Jaguar). IIS
and Apache are installed, but this is primarily a component server, so
EAServer could also provide the http listener on port 80, meaning I could
dispense with Apache and IIS altogether.
I'd been told (in a phpBB forum) that php5 would natively support EAServer
as the http server. Is this true? If so, where can I find configuration
information?
If this is NOT supported, should I go with Apache or IIS? I will be
installing pbpBB, but will not be using ASP. My database is MS-SQL2K.
Also, are there plans for a windows installer version of php5?
Thanks,
Jeff
--- End Message ---
--- Begin Message ---
On Friday 16 July 2004 23:44, Jeff Hill wrote:
> Also, are there plans for a windows installer version of php5?
I have prepared the installer for php5 which is being tested at the moment.
You can download a copy from
http://www.dialsolutions.com/phil/php/php-5.0.0-installer.exe
Let me know if you have any problems with it.
Cheers
--
Phil Driscoll
--- End Message ---
--- Begin Message ---
Thanks, Phil. I'll try it tonite.
...Jeff
"Phil Driscoll" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> On Friday 16 July 2004 23:44, Jeff Hill wrote:
>
> > Also, are there plans for a windows installer version of php5?
> I have prepared the installer for php5 which is being tested at the
moment.
> You can download a copy from
> http://www.dialsolutions.com/phil/php/php-5.0.0-installer.exe
>
> Let me know if you have any problems with it.
>
> Cheers
> --
> Phil Driscoll
--- End Message ---