Re: [PHP-WIN] A **NEW** "X-powered" dilemma... sessions using memory instead of files

2001-04-09 Thread Daniel Beulshausen
At 02:38 10.04.2001 +0800, John Lim wrote: >Hi, I believe the mm session handler is only available on Unix. the mm option is for memory mapped files AFAIR, so far they are only available onder *nix. win32 supports memory mapped files as well (in a different manner). daniel >John > > >"Asendorf

RE: [PHP-WIN] A **NEW** "X-powered" dilemma... sessions using memory instead of files

2001-04-09 Thread Asendorf, John
:( I wondered why the server started smoking after I set that handler... - John Asendorf - [EMAIL PROTECTED] Web Applications Developer http://www.lcounty.com - NEW FEATURES ADDED DAILY! Licking County, Ohio, USA 740-349-3631 Aliquando et insanire iucundum est > -Origin

Re: [PHP-WIN] Zend IDE/Debugger Install missing files?

2001-04-09 Thread John Lim
It's not needed. Ignore it. I have Zend Debugger working in W2K. Regards, John "Adam Robertson" <[EMAIL PROTECTED]> wrote in message 9ak79o$u0v$[EMAIL PROTECTED]">news:9ak79o$u0v$[EMAIL PROTECTED]... > Hi all, > > I'm trying to install the new Zend IDE and Debug server on my win2k / Apache > / M

Re: [PHP-WIN] A **NEW** "X-powered" dilemma... sessions using memory instead of files

2001-04-09 Thread John Lim
Hi, I believe the mm session handler is only available on Unix. John "Asendorf, John" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I was trying to run sessions using memory instead of files. So I changed the > session.save.handler in php.ini from "files" t

Re: [PHP-WIN] Session problems

2001-04-09 Thread Olivier Hubert
Hi, Ok, first of all, the function session_start () should be run on each page that uses session variables. It is necessary to access, create or modify session variables. To register variables, use session_register (). Be aware that the function uses a string argument. So to regi

RE: [PHP-WIN] Session problems

2001-04-09 Thread Asendorf, John
[> This is the > function which gets the session id. ] Ops... I meant "This is the function which gets the **variables** from the session file." - John Asendorf - [EMAIL PROTECTED] Web Applications Developer http://www.lcounty.com - NEW FEATURES ADDED DAILY! Licking Coun

RE: [PHP-WIN] Session problems

2001-04-09 Thread Asendorf, John
Dear Mark, You must have the line session_start (); at the beginning of the pages that are part of the session. This is the function which gets the session id. You can also use session_start to BEGIN the session. You must then register any variables you want to be held by the session. You

RE: [PHP-WIN] Help PHP inetinfo

2001-04-09 Thread Asendorf, John
Ditto. I had nothing but problems trying to use the ISAPI implementation with Access. Move to CGI. - John Asendorf - [EMAIL PROTECTED] Web Applications Developer http://www.lcounty.com - NEW FEATURES ADDED DAILY! Licking County, Ohio, USA 740-349-3631 Aliquando et insanire

RE: [PHP-WIN] Help PHP inetinfo

2001-04-09 Thread Flint Doungchak
Aaron, >From what I understand, the ISAPI filter still isn't all that great. I have had very poor experience with it and still use the CGI version with no problems. -Flint -Original Message- From: aaron [mailto:[EMAIL PROTECTED]] Sent: Monday, April 09, 2001 10:27 AM To: [EMAIL PROTECTE

[PHP-WIN] A **NEW** "X-powered" dilemma... sessions using memory instead of files

2001-04-09 Thread Asendorf, John
I was trying to run sessions using memory instead of files. So I changed the session.save.handler in php.ini from "files" to "mm" Now I'm getting the X-Powered line at the top of my pages (all pages to be exact, even the ones not using sessions). NT4IIS4 PHP 4.0.4CGI Anyone know how t

[PHP-WIN] MSSQL Connect problems

2001-04-09 Thread Thomas W. Badera
Hello - I'm trying to debug some scripts locally before I send them to my server. When the scripts are on the server they have no problem connecting to the MSSQL sever, but when run from my machine I can't get it to establish a connection. Any thoughts? --TWB -- PHP Windows Mailing List (htt

[PHP-WIN] Session problems

2001-04-09 Thread Mark Collins
Hi there, I am trying to get my head around Sessions but not getting very far. I can't seem to work out exactly how you keep track of the variables. If you register a variable at the start of the page, will it then track this variable and take it from page to page by its self, or do you have to do

[PHP-WIN] Help PHP inetinfo

2001-04-09 Thread aaron
I'm running php 4.0 on NT IIS 4.0 and using the ISAPI php filter rather than the CGI installation. When I execute a php page that queries an Access database about 5 times, my CPU utilitization goes up to 100% and stays there till I kill the inetinfo process. Is this a bug in the ISAPI installati

php-windows Digest 9 Apr 2001 17:10:32 -0000 Issue 535

2001-04-09 Thread php-windows-digest-help
php-windows Digest 9 Apr 2001 17:10:32 - Issue 535 Topics (messages 6569 through 6581): Re: PHP 6569 by: Tom Mathews HDSL 6570 by: IFC - Internet, Fantasia, Competenza Apache and SSL 6571 by: Urmil Parikh 6576 by: Steve Prentice Re: saving images which hav

[PHP-WIN] Map_array not available

2001-04-09 Thread Jeremy Adams
I'm trying to use the map_array function, but I'm getting a "Call to undefined function: map_array()". It seems like it's not available in the Win32 distribution. Is there a way to activate it? -Jeremy Adams -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PRO

[PHP-WIN] fatal error with mysql and php4

2001-04-09 Thread Damien du Toit
"Fatal error: Call to undefined function: mysql_db_query() in ?" What would cause this problem? I know that with PHP3 you got an error when you didn't uncomment that line in php.ini, but PHP4 claims to have mysql build in? What is the problem now? Damien du Toit New Media Programmer tel +

[PHP-WIN] PHP4 on IIS4: extensions

2001-04-09 Thread Houtenbos, Robert
Hi there! I'm having great difficulties configuring the php.ini file on WinNT4 and IIS4. I want to use the GD extension for dynamic imaging, but i keep getting this error message in phpinfo(): PHP Warning: gd: Unable to initialize module Module compiled with debug=0, thread-safety=1 module API=2

Re: [PHP-WIN] saving images which have been assigned a strange name

2001-04-09 Thread Phil Driscoll
>I did not try Content-Length, but I have tried Content-Type with >Content-Disposition which did not work. I should try again, as it works every time for me. -- Phil Driscoll Dial Solutions +44 (0)113 294 5112 http://www.dialsolutions.com http://www.dtonline.org -- PHP Windows Mailing List (ht

RE: [PHP-WIN] saving images which have been assigned a strange name

2001-04-09 Thread Darvin Andrioli
I've got the same problem with IE 4.01, so I looked for it at MIcrosoft and I got: According to RFC 2183, servers should be able to force a Save-As type dialog box by sending a "Content-Disposition: attachment" server response header to the client when sending the requested file back to the bro

Re: [PHP-WIN] Apache and SSL

2001-04-09 Thread Steve Prentice
"Urmil Parikh" <[EMAIL PROTECTED]> wrote in a message: > > Hi, > > Has anybody got SSL module for apache on windows? > > Regards, | Linux > Urmil Parikh | Is it really safe to turn on your computer? > http://www.modssl.org/contrib/ I'd suggest www.modssl.org/contrib/Apache_1.3.19-Mod_S

RE: [PHP-WIN] saving images which have been assigned a strange name

2001-04-09 Thread Urmil Parikh
I did not try Content-Length, but I have tried Content-Type with Content-Disposition which did not work. Regards, | Linux Urmil Parikh | Is it really safe to turn on your computer? -Original Message- >It has happened with me too. IE takes the download filename from the URL one

Re: [PHP-WIN] saving images which have been assigned a strange name

2001-04-09 Thread Phil Driscoll
>It has happened with me too. IE takes the download filename from the URL one >clicks to download it. Not if you send out the correct headers: header("Content-Type: $mimetype"; header("Content-Length: $filelength"); header("Content-Disposition: attachment; filename=$filename"); Cheers -- Phil D

RE: [PHP-WIN] saving images which have been assigned a strange name

2001-04-09 Thread Urmil Parikh
It is certainly a bug, but in Internet Explorer... It has happened with me too. IE takes the download filename from the URL one clicks to download it. Regards, | Linux Urmil Parikh | Is it really safe to turn on your computer? -Original Message- Almost certainly a bug in your

Re: [PHP-WIN] saving images which have been assigned a strange name

2001-04-09 Thread Phil Driscoll
Almost certainly a bug in your code. Post some code for more help. -- Phil Driscoll Dial Solutions +44 (0)113 294 5112 http://www.dialsolutions.com http://www.dtonline.org -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-ma

[PHP-WIN] Apache and SSL

2001-04-09 Thread Urmil Parikh
Hi, Has anybody got SSL module for apache on windows? Regards, | Linux Urmil Parikh | Is it really safe to turn on your computer? -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact

[PHP-WIN] HDSL

2001-04-09 Thread IFC - Internet, Fantasia, Competenza
Salve a tutti, volevo chiedere un parere a tutti gli interessati sulla nuova offerta HDSL di Aruba.it ARUBA HDSL £ 375000 al mese + iva (comprendente costi di linea, traffico di 2,5 GBytes (£ 250.000) e noleggio router (£ 125.000), mentre per ogni MB eccedente è previsto un corrispettivo di Lit.

Re: [PHP-WIN] PHP

2001-04-09 Thread Tom Mathews
If you're not too fussed about security, then the easiest way is to create a cookie and then check for it at the beginning of each page (ie if (!ISSET(CookieName) {}) Tom Synopsis wrote: > any one here , know how to pass the login data to each page a user gose on, > and that page checking it to