php-windows Digest 18 Sep 2002 12:39:45 -0000 Issue 1345

Topics (messages 15868 through 15885):

Re: MSSQL Date Format Problem
        15868 by: Tracker1

Re: PHP and Java
        15869 by: Ernani Joppert Pontes Martins

Re: troublesome exec
        15870 by: Ernani Joppert Pontes Martins

Re: results over multiple pages
        15871 by: Ernani Joppert Pontes Martins

Re: Probally A newbie Question: Why does it try to download my php file?
        15872 by: Ernani Joppert Pontes Martins

Re: Getting at addressbook information on an Exchange Server...
        15873 by: Ernani Joppert Pontes Martins

Re: zip functions
        15874 by: Ernani Joppert Pontes Martins

Re: Sessions
        15875 by: Ernani Joppert Pontes Martins
        15881 by: Opere, James

Re: File Uploader - Progress
        15876 by: Ernani Joppert Pontes Martins

Re: Windows with Oracle
        15877 by: Ernani Joppert Pontes Martins

Re: Session
        15878 by: Ernani Joppert Pontes Martins

Re: redirection help
        15879 by: Ernani Joppert Pontes Martins

Re: fatal error .... failed opening ..... ????
        15880 by: Ernani Joppert Pontes Martins

Re: SESSIONS- clustered environment
        15882 by: Luis Ferro

Re: error from PHP...any ideas?
        15883 by: Juraj Hasko

HTTPS installation/use
        15884 by: Luis Ferro

LDAP scripts to read Exchange Server 2000 Contacts
        15885 by: R.S. Herhuth

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 ---
this is personally why I try to always use iso compliant
"yyyy-mm-dd hh:nn" or "yyyy-mm-dd"

Matt Kynaston wrote:
> ------=_NextPart_000_000D_01C25E30.61F93B80
> Content-Type: text/plain;
>       charset="iso-8859-1"
> Content-Transfer-Encoding: 7bit
> 
> PHP is supposed to output the date according to the locale settings of the
> server - see setlocale() function to force the issue. But dates are always a
> pain - strtotime() and strftime() are your friends.
> 
> 
>>Incidentally, inserting a value into the databases on both
>>machines works
>>presenting the date as "14/9/2002", it is just when returning
>>a recordset to
>>PHP via the select statement that the difference occurs.
> 
> 
> Yikes! And what happens with "02/01/2002"? Remember: a yank build that DB.
> If it can, it probably will put months before days. _Always_ convert to
> YYYYMMDD before inserting, otherwise terrible things start happening on
> November the nineth.
> 
> Matt
> 
> ------=_NextPart_000_000D_01C25E30.61F93B80--

-- 
-----------------------------------------------------------------------
  Michael J. Ryan                          |      ICQ: 4935386
      tracker1(at)theroughnecks(dot)net    |  AIM/AOL: azTracker1
  Roughneck BBS:                           |    Yahoo: azTracker1
      http://www.theroughnecks.net         |      MSN: (email address)
      telnet://theroughnecks.net           | Trillian: www.trillian.cc
--- Synchronet 3.10j-Win32 NewsLink 1.30
 *  Roughneck BBS - www.theroughnecks.net - telnet://theroughnecks.net
--- End Message ---
--- Begin Message ---
This problem seems to be weird

First of all, this php script works on any other enviroment outside of your
computer?

Have you tried to set java configurations at php.ini file?

HTH,

Ernani



"James Opere" <[EMAIL PROTECTED]> escreveu na mensagem
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> I have downloaded JDK1.1.8  and installed on a windows platform.The
problem
> is that when i copy a script, paste and try to run as a .php which has
some
> java in it, i get an error i.e
>
> Fatal error: Cannot instantiate non-existent class: java in
> c:\phpdev\www\phpjava.php on line 5
> The script is as below:
> <?php
>
>      // Create an instance of the System object
>      // using PHP's Java class
>      $system = new Java("java.lang.System");
>
>      // Get the Java version
>      $version = $system->getProperty("java.version");
>
>      // Write it to the screen
>      echo("Java Version: $version");
>
> ?>
>
>  Can anybody help me out there how i should do my configuration so that
this
> can run? I tried making changes in php.ini but i still get the same
error.Do
> i need to install anothere java? If not, how then should i go about it?


--- End Message ---
--- Begin Message ---
Have you tried to use system instead of exec ?

HTH,

Ernani

"Michael Langford" <[EMAIL PROTECTED]> escreveu na mensagem
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> I'm trying to run a program using exec but no matter what I do I keep
> receiving a persistent unable to fork error.
> I currently have:
> exec("command.exe", $misspells);
> which gives me an error, so tried
> exec("cmd /c command.exe", $misspells); and even
> exec("C:\WINNT\system32\cmd.exe  /c command.exe", $misspells);
>
> I tried setting execute permissions on the system32 folder and also have
> execute permissions on the command.exe file. I am running PHP v2.1.0,
> recently upgrading coz i heard there were unable to fork problems with
> 4.0.6. Can anyone help???
>
> many thanks in advance
> Mike
>
>
>


--- End Message ---
--- Begin Message ---
Huh,

Cool Rasmus, if they make it I will let you know.

What is a dime when you have thousands of nickels.

Cheers,

Ernani

"Rasmus Lerdorf" <[EMAIL PROTECTED]> escreveu na mensagem
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> heh ;)
>
> I'd love it if it did.  But alas, LIMIT is actually a hack I came up with
> years ago for mSQL which was brought into MySQL and enhanced.  If it ever
> makes it into MSSQL or Oracle I'll charge big-time royalties or
> something...
>
> -Rasmus
>
> On Mon, 6 May 2002, olinux wrote:
>
> > Does MSSQL not have a LIMIT clause?
> >
> > $offset = ($page - 1) * $numDisplay
> > i.e. SELECT * FROM $table WHERE whatever = '$blah'
> > LIMIT $offset, $numDispay
> >
> > olinux
> >
> > --- RS Herhuth <[EMAIL PROTECTED]> wrote:
> > > List,
> > >
> > > I'm pulling my hair out trying to figure out why
> > > this is not working.  I am
> > > trying to limit the number of returns on a page and
> > > if need be spread the
> > > results over multiple pages.  The following is where
> > > i believe the problem
> > > to be.  Please keep in mind I'm using Microsoft SQL
> > > Server.  The variables
> > > are being set properly (I have several places where
> > > I'm echoing the results
> > > just to be sure).  The problem is that the same five
> > > names are being
> > > returned on each page even though the value of $i is
> > > incrementing properly
> > > and the correct number of pages are being calculated
> > > correctly.
> > >
> > >
> > >
> > >
> > > if ($currentPage > 1) {
> > > $host="localhost";
> > > $DB="testDB";
> > > $user="sa";
> > > $pass="";
> > > $connect = mssql_connect($host,$user,$pass) or die
> > > ($host." not
> > > accessible.");
> > > if ($DB) mssql_select_db($DB)or die('USE '.$DB.'
> > > failed!');
> > > $query = "SELECT first_name, last_name FROM
> > > individual WHERE last_name
> > > LIKE '$searchField%' ORDER by last_name ASC";
> > > $result = mssql_query($query);
> > > $numRows = mssql_num_rows($result);
> > > $numPages = ceil($numRows/$numDisplay);
> > > echo "Total Rows: $numRows, Results per Page:
> > > $numDisplay, Number of
> > > Pages: $numPages<br><br>";
> > > $lwr = $currentPage * $numDisplay;
> > > $upr = ($currentPage * $numDisplay) + $numDisplay;
> > > echo "$lwr, $upr <br><br>";
> > > echo "Current Page: $currentPage<br><br>";
> > > for($i = $lwr; $i < $upr; $i++){
> > > $row = mssql_fetch_row($i,$result);
> > > echo "$i, $row[first_name] $row[last_name]<br
> > > />";
> > > }
> > >
> > > if($currentPage < $numPages){
> > > $nextPage = $currentPage + 1;
> > > echo "<a
> > >
> >
href='searchScreen.php?searchField=$searchField&currentPage=$nextPage'>next<
> > > /a>";
> > > }
> > > }
> > >
> > >
> > >
> > >
> > >
> > >
> > > Anyone have any idea why only the same five names
> > > might be being returned on
> > > each of the pages?  I'm not getting something here.
> > >
> > > Thanks,
> > > Ron
> > >
> > >
> > > --
> > > PHP Windows Mailing List (http://www.php.net/)
> > > To unsubscribe, visit: http://www.php.net/unsub.php
> > >
> >
> >
> > __________________________________________________
> > Do You Yahoo!?
> > Yahoo! Health - your guide to health and wellness
> > http://health.yahoo.com
> >
> > --
> > PHP Windows Mailing List (http://www.php.net/)
> > To unsubscribe, visit: http://www.php.net/unsub.php
> >
>


--- End Message ---
--- Begin Message ---
Have you followed winch procedure of install ?

Cheers,

Ernani

"Borgkiller" <[EMAIL PROTECTED]> escreveu na mensagem
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> I tryed that too. Didnt work. Any other ideas?
>
> "Brian McGarvie" <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]...
> > you need both:
> >
> >  LoadModule -----------
> >
> > &
> >
> > AddType application/x-httpd-php .php
> >
> > "Borgkiller" <[EMAIL PROTECTED]> wrote in message
> > news:[EMAIL PROTECTED]...
> > > I was using Linux for my intranet. It worked fine, but my cousin told
me
> > > about how I could also use windows as a intranet server. I got rid of
> > Linux
> > > (It was giving me a headache) When I installed Apache and php. When I
go
> > to
> > > access install.php (Or any php file), it downloads it off localhost
(My
> > > computer) but never executes it, but it just returns me to a index
> screen
> > of
> > > my files. I have checked the config files, they look ok. I have loaded
> the
> > > module into the httpd.conf and it looks like it's running, but it
still
> > > doesn't work. Anyone have any ideas?
> > >
> > > Thanks
> > > BorgKiller
> > >
> > >
> >
> >
>
>


--- End Message ---
--- Begin Message ---
I have made a com+ module in php that uses CDO (Collaboration Data Objects)
to interact with exchange server profiles and send e-mails with php like a
webmail.

Are you interested ?

Cheers,

Ernani

"Ross Fleming" <[EMAIL PROTECTED]> escreveu na mensagem
news:[EMAIL PROTECTED]...
> Question 1 I'm not too sure about...
>
> Question 2:
>
> How do you mean spell check it?  There are several levels of depth you
could
> take this to.  You could just check the format of it (ie
> [EMAIL PROTECTED]) using a pattern matching technique
> ereg(
>
"^[^@ ]+@([a-zA-Z0-9\-]+\.)+([a-zA-Z0-9\-]{2}|net|com|gov|mil|org|edu|int)$"
> ,$email) is a rather simple one.
>
> This only checks that it's a valid format of email address however.  It
> doesn't stop php emailing [EMAIL PROTECTED] (going out on a
> limb and assuming this doesn't exist!)
>
> There are ways of taking this further however.  You can explode $email by
> the @ character and checking that the domain actually exists by simply
> pinging it or connecting to the relevant smtp server.  This again, doesn't
> stop php from emailing [EMAIL PROTECTED] (again, probably
> doesn't exist but the format is ok and the TLD exists).  The next step you
> could take (and this is getting a bit involved here... depends how much
time
> you've got on your hands) is to talk to the smtp server and attempt to
find
> out whether the user exists or not.  I believe that it is possible to get
an
> smtp server to confirm or deny a users existance.
>
> Like I say, these are varying levels of checking, I have to say I've only
> ever went so far as to resolving the TLD through a DNS server.
>
> A solution you may wish to consider, is only allowing trusted email
> addresses to be used.  One way I have done this in the past is to allow a
> user to register an email address, and then email a random cipher to this
> address and make the user enter the cipher into a validation page, thereby
> validating the email address a genuine and held by the user.
>
> I'd be glad to help if you've got any questions about the solutions I've
> given. :)
>
> HTH
>
> Ross
>
> > -----Original Message-----
> > From: RS Herhuth [mailto:[EMAIL PROTECTED]]
> > Sent: 24 August 2001 15:31
> > To: [EMAIL PROTECTED]
> > Subject: [PHP-WIN] Getting at addressbook information on an Exchange
> > Server...
> >
> >
> >
> > Two questions (well four if you count the sub questions):
> >
> > 1.  Is there a way to get at the addressbook information stored on an
> > Exchange Server using PHP?  Is there any documentation anyone
> > knows of that
> > can aid in this?
> >
> > 2.  Is it possible to create an inline spellchecker that could be used
to
> > spellcheck an email before it is sent using PHP?  Is there any
> > documentation
> > anyone knows of that can aid in this?
> >
> > Thanks,
> > Ron
> >
> >
> >
> > --
> > PHP Windows Mailing List (http://www.php.net/)
> > To unsubscribe, visit: http://www.php.net/unsub.php
> >
> >
> >
>


--- End Message ---
--- Begin Message ---
The zip functions uses php_zlib.dll

Not the php_zip.dll like you want to get.

HTH,

Ernani

"Michael Dransfield" <[EMAIL PROTECTED]> escreveu na mensagem
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Does anyone have a working version of php with zip functions enabled.
>
> I do not have a c compiler on windows and i cannot find the php_zip.dll
> anywhere.
>
> Do i just need the dll or do i need it compiled into the binary as well?
> (i am using a cgi version for php-gtk)
>
> Can anyone help?
>
>
>


--- End Message ---
--- Begin Message ---
Try to config in php.ini file the session_save_path to C:\temp not /tmp

HTH,

Ernani

"Peter Finch" <[EMAIL PROTECTED]> escreveu na mensagem
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> I am learning PHP from the Greenspan and Bulger book, on a Windows
> development system using PHP 4.1.2 and Apache. All has worked fine until I
> got to sessions. This simple program:
> <?php
>
> session_start();
>
> ?>
>
> produces this output:
>
> Warning: open(/tmp\sess_d7e26c0283f94a430da8f7fc4138ca21, O_RDWR) failed:
No
> such file or directory (2) in
c:\phpweb\post-march-2002-stuff\learning3.php
> on line 2
>
> Warning: open(/tmp\sess_d7e26c0283f94a430da8f7fc4138ca21, O_RDWR) failed:
No
> such file or directory (2) in Unknown on line 0
>
> Warning: Failed to write session data (files). Please verify that the
> current setting of session.save_path is correct (/tmp) in Unknown on line
0
>
> I have provided a directory called tmp as a sub directory of the directory
> in which the little program resides. It is not read only. Phpinfo() shows
> session.save_path as /tmp.
>
> Would anyone help me please?
>
> Peter Finch
>
>
>
>
>


--- End Message ---
--- Begin Message ---
Or simply create a folder under C called tmp i.e 'C:\tmp' and you will done.


J.Opere


-----Original Message-----
From: Ernani Joppert Pontes Martins [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, September 18, 2002 8:57 AM
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] Re: Sessions

Try to config in php.ini file the session_save_path to C:\temp not /tmp

HTH,

Ernani

"Peter Finch" <[EMAIL PROTECTED]> escreveu na mensagem
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> I am learning PHP from the Greenspan and Bulger book, on a Windows
> development system using PHP 4.1.2 and Apache. All has worked fine until I
> got to sessions. This simple program:
> <?php
>
> session_start();
>
> ?>
>
> produces this output:
>
> Warning: open(/tmp\sess_d7e26c0283f94a430da8f7fc4138ca21, O_RDWR) failed:
No
> such file or directory (2) in
c:\phpweb\post-march-2002-stuff\learning3.php
> on line 2
>
> Warning: open(/tmp\sess_d7e26c0283f94a430da8f7fc4138ca21, O_RDWR) failed:
No
> such file or directory (2) in Unknown on line 0
>
> Warning: Failed to write session data (files). Please verify that the
> current setting of session.save_path is correct (/tmp) in Unknown on line
0
>
> I have provided a directory called tmp as a sub directory of the directory
> in which the little program resides. It is not read only. Phpinfo() shows
> session.save_path as /tmp.
>
> Would anyone help me please?
>
> Peter Finch
>
>
>
>
>



-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--- End Message ---
--- Begin Message ---
I've made something to show download percentage with Java, with an Applet

So then if you want to I can send you a class that downloads a file with a
download status bar on it.

Then you may handle your problem.

"Stuart Dallas" <[EMAIL PROTECTED]> escreveu na mensagem
3CD2FE47.2527.AF1141@localhost">news:3CD2FE47.2527.AF1141@localhost...
> On 3 May 2002 at 15:57, Mike Flynn wrote:
> > At 01:21 AM 5/4/02 +0530, Arijit Chaudhuri wrote:
> > >File uploads are a breeze to code in php. However, I have got a
> > >request from a client to show the percentage uploaded or some graphic
> > >progress monitor as the upload process is difficult to track for
> > >large files. Is there any way of coding such a progress tracker for
> > >file uploads in php?
> >
> > Unfortunately, I don't think there is.  The file data is sent in the
> > *request* for the PHP page, meaning the PHP page doesn't even get sent
> > back to the user until the file is done uploading.  So there's not
> > really any choice but for the user to view the page with the upload
> > form until the file is done uploading.
>
> I've been thinking about this, and there may be a way. I don't know how
PHP handles file
> uploads, but it has to be saving the file it's receiving somewhere. You
could launch a popup
> window when the form is submitted. That popup goes to a page that gets the
size of the file
> PHP is saving the upload to and displays it and refreshes itself
periodically.
>
> I dunno if it would work, but it's a possibility.
>
> --
> Stuart


--- End Message ---
--- Begin Message ---
Have you tried to install the client of Oracle on your machine ?

Winch version ?

Try to do a simple test with OCI functions...

HTH,

Ernani


"Jeff Lutes" <[EMAIL PROTECTED]> escreveu na mensagem
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Hello,
>
> New to the list and have a PHP-sized headache.
>
> I'm attempting to connect to an Oracle DB and, being totally new to PHP,
was
> looking for a pre-built script.  What I have been finding doesn't seem to
> want to run.  I keep getting ORA-03121 - no interface driver connected.
> Below is the snippit I've been playing with:
>
> <?php
>
> // load enviornment variables
> putenv("ORACLE_SID=PROD");
> putenv("ORACLE_HOME=C:\ORAWIN95");
>
> // create connection
>
> $conn = Ora_Logon("uid", "password")
> or die("Couldn't logon.");
>
> // create SQL statement
> $sql = "SELECT CUSTOMER_ORDER_TAB.CUSTOMER_NO,
> CUSTOMER_ORDER_TAB.CUSTOMER_PO_NO, CUSTOMER_ORDER_TAB.DATE_ENTERED,
> CUSTOMER_ORDER_TAB.ORDER_NO, CUSTOMER_ORDER_TAB.WANTED_DELIVERY_DATE
> FROM IFSAPP.CUSTOMER_ORDER_TAB CUSTOMER_ORDER_TAB
> WHERE (CUSTOMER_ORDER_TAB.DATE_ENTERED=SYSDATE)";
>
> // parse SQL statement
> $sql_statement = Ora_Parse($connection,$sql)
> or die("Couldn't parse statement.");
>
> // execute SQL query
> Ora_Execute($sql_statement)
> or die("Couldn't execute statement.");
>
> // get number of columns for use later
> $num_columns = Ora_NumCols($sql_statement);
>
> // start results formatting
> echo "<TABLE BORDER=1>";
> echo "<TR>
>       <TH>Customer Number</TH>
>       <TH>PO</TH>
>       <TH>Date</TH>
>       <TH>Oder Number</TH>
>       <TH>Wanted Delivery</TH>
>       </TR>
>       ";
>
> // format results by row
> while (Ora_Fetch($sql_statement)) {
> echo "<TR>";
> for ($i = 0; $i < $num_columns; $i++) {
> $column_value = Ora_Result($sql_statement,$i);
> echo "<TD>$column_value</TD>";
> }
> echo "</TR>";
> }
>
> echo "</TABLE>";
>
> // free resources and close connection
> Ora_FreeStatement($sql_statement);
> Ora_Logoff($connection);
>
> ?>
>
>
> TIA for any assistance,
>
> Jeff Lutes
> I.S. Support Specialist
> MOUS Word/Excel Expert
> Hopkins Mfg. Corp.
>
>
> _________________________________________________________________
> Chat with friends online, try MSN Messenger: http://messenger.msn.com
>


--- End Message ---
--- Begin Message ---
Set php.ini session_save_path to whereever u want to.

HTH,

Ernani

"Ib Helmer Nielsen" <[EMAIL PROTECTED]> escreveu na mensagem
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Hi
> I am new in programming in PHP, so my question is purhaps stupid but never
> the less.
> The problem is the following, when i run the program below ther is made a
> file in the directory for saving session var.
>
> <?php
> session_start();
> $userID = "ihn";
> if (session_register("userID"))
> {
>     echo("User :  $userID");
> } else
> {
>     echo("Could not set the session variable!");
> }
> ?>
>
>
> but i cannot read the var back with th followng pogram
>
> <?php
> session_start();
> eccho("User : $userID");
> ?>
>
> thanks in advance
> escuse my english
> Ib Helmer Nielsen
>
>
>
>
>


--- End Message ---
--- Begin Message ---
Your problem is that you can not send anything to the browser before the
Header command.

Only after it.

HTH,

Ernani

"Zac Hillier" <[EMAIL PROTECTED]> escreveu na mensagem
006f01c1f372$88e64c20$667ba8c0@affectors">news:006f01c1f372$88e64c20$667ba8c0@affectors...
Hi,

Have been coding in asp for the past 18 months but have now decided to move
our site to php and mysql.

In asp we used a function response.redirect to send the user to another page
as required, is there a similar function in php that can work from within
side the page rather than the header area? We get

Warning: Cannot add header information - headers already sent by (output
started at D:\php-dev\includes\lg.php:2) in D:\php-dev\includes\lg.php on
line 26

When using header("Location:

Many thanks for any help.

Zac



--- End Message ---
--- Begin Message ---
put a single dot in the include_path of php.ini

include_path = "C:\php4\pear;.;"

HTH,

Ernani

"Toby z" <[EMAIL PROTECTED]> escreveu na mensagem
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> hi
> im trying to take input from a form & upload a file
> too ......
>
> n im getting this error messege ....
>
> Fatal error: Failed opening required 'common.php'
> (include_path='c:\php4\pear')
> in d:\inetpub\wwwroot\proceed.php on line 7
>
>
> i ve tried changin the include path in php.ini ....
> but that didn help ....
>
> ne idea whats rong .... n how i can fix it ?????
>
>
> toby ....
>
> __________________________________________________
> Do You Yahoo!?
> Yahoo! Health - your guide to health and wellness
> http://health.yahoo.com


--- End Message ---
--- Begin Message ---
You have two solutions (IMHO):

a) Database storage

    Replacement of the session_init and session_save/register functions 
with others that will save/load the sessions from a database storage.

    Pros: easy to implement
    Cons: dependency of the database storage reliability, scalability 
problems
   
b) Distributed sessions

    Replace the same functions with some that will propagate the session 
values to all the servers in the cluster, so that the next request can 
be served by any and the session won't be corrupted. [this would mandate 
the existence of a "cluster" layer in the servers configuration]

    Pros: high availability, redundancy and scalability
    Cons: very dificult to implement

The first method can perform better in low trafic environments... but 
will scale worst as the trafic will rise... the second method is much 
more granular, with the performance cost more stable in all trafic 
conditions,

The first method will have is performance dependent on the performance 
of the database storage... the second method will have performance 
dependent on how many servers exist to syncronize the sessions...

The non-cluster solution would be to have all the sessions register in 
only one server, and get all the content in a second line of web 
servers... that way, the main server would only handle connections and 
sessions, with all the content and data communications bellonging to the 
second line servers...

Cheers,
Luis Ferro
TelaDigital

Matt Babineau wrote:

>What would be the best way to handle sessions in a clustered environment
>without making the load-balancing persistant?
> 
>Matt Babineau
>MCWD / CCFD
>-----------------------------------------
>e:  <mailto:[EMAIL PROTECTED]> [EMAIL PROTECTED]
>p: 603.943.4237
>w:  <http://www.criticalcode.com/> http://www.criticalcode.com
>PO BOX 601
>Manchester, NH 03105
> 
>
>  
>



---
[This E-mail scanned for viruses by Declude Virus]

--- End Message ---
--- Begin Message ---
I run same configuration, but only HTTP.
Same problems ... Run as CGI, everything will be fine.
Juraj

>-----Original Message-----
>From: Matt Babineau [mailto:[EMAIL PROTECTED]]
>Sent: Tuesday, September 17, 2002 8:39 PM
>To: [EMAIL PROTECTED]
>Subject: error from PHP...any ideas?
>
>
>IIS 5, Win2K, Running as ISAPI, HTTPS, PHP 4.2
> 
>PHP has encountered an Access Violation at 01152A55
> 
>Any ideas how to deal with this? I got this on my development server.
>Should I just use PHP as a CGI instead of ISAPI?
> 
> 
> 
>Matt Babineau
>MCWD / CCFD
>-----------------------------------------
>e:  <mailto:[EMAIL PROTECTED]> [EMAIL PROTECTED]
>p: 603.943.4237
>w:  <http://www.criticalcode.com/> http://www.criticalcode.com
>PO BOX 601
>Manchester, NH 03105
> 
>
--- End Message ---
--- Begin Message ---
I've PHP 4.2.x running as ISAPI in a W2K Server/IIS 5 box...

How to i setup SSL so i can receive HTTPS connections and install a 
certificate in the site to supply the SSL the required certificate?

What i need to do is receive a HTTPS POST to a script that i supply the 
name and make HTTPS POST to a external web server... This is required to 
implement a transaction system with SSL security...

On the other hand, the php_curl.dll gives me an missing library error 
when trying to start the web server with it loaded... Am I missing 
something?

Thank you in advance for all the help,
Luis Ferro
TelaDigital.Net




---
[This E-mail scanned for viruses by Declude Virus]

--- End Message ---
--- Begin Message ---

I was wondering if anyone knows of any sample scripts that utilize PHP's
support for LDAP.  Specifically I'm going to be attempting to utilize
LDAP to access contact information from the Microsoft Exchange server. 
It looks like LDAP is just the ticket for this.  I was hoping to have a
few sample scripts that would jump start my LDAP learning curve.

Thanks,
Ron
--- End Message ---

Reply via email to