Re: [PHP-WIN] cookies time? - now it doesn't write [SOLVED]

2006-09-19 Thread German Piqué
same. I want to know to limit in the class the cookies' size. Thanks to all :) 2006/9/19, German Piqué <[EMAIL PROTECTED]>: > > > > -- Forwarded message -- > From: German Piqué < [EMAIL PROTECTED]> > Date: 19-sep-2006 10:38 > Subject: Re: [PHP-WIN

Re: [PHP-WIN] cookies time? - now it doesn't write

2006-09-19 Thread German Piqué
to limit in the class the cookies' size. Thanks to all :) 2006/9/19, German Piqué <[EMAIL PROTECTED]>: -- Forwarded message -- From: German Piqué <[EMAIL PROTECTED]> Date: 19-sep-2006 10:38 Subject: Re: [PHP-WIN] cookies time? - now it doesn't write To: &qu

Fwd: [PHP-WIN] cookies time? - now it doesn't write

2006-09-19 Thread German Piqué
-- Forwarded message -- From: German Piqué <[EMAIL PROTECTED]> Date: 19-sep-2006 10:38 Subject: Re: [PHP-WIN] cookies time? - now it doesn't write To: "Frank M. Kromann" <[EMAIL PROTECTED]> Now works... Oo But i have another problem. My script must c

Re: [PHP-WIN] cookies time?

2006-09-18 Thread Frank M. Kromann
both time() and mktime() works fine on Windows. - Frank > Well, reading the documentation about cookies i saw that the function time() > works using UNIX epochs. If I try to use this function (or mktime) in > windows, the php shows a white page, like there's an error somewhere. > > It's a proble

[PHP-WIN] cookies time?

2006-09-18 Thread German Piqué
Well, reading the documentation about cookies i saw that the function time() works using UNIX epochs. If I try to use this function (or mktime) in windows, the php shows a white page, like there's an error somewhere. It's a problem with windows machine's or there's another solution to this? Mean

[PHP-WIN] cookies on IIS - php5

2004-11-04 Thread Sean S. Karshis
-Original Message- From: Armando [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 02, 2004 10:47 PM To: [EMAIL PROTECTED] Subject: RE: [PHP-WIN] Displaying An Image / Non-Web accessible Dir Hi Jason, I wonder if permissions are my problem, but... When I try and fopen the file (using r

RE: [PHP-WIN] Cookies!

2004-10-26 Thread Sudeep
7;ve looked at all sorts of things on the net, and can't find anything that will help me write an user authentication setup for my web pages Please please please can someone assist me! Thanks James > -Original Message- > From: Dale Attree [mailto:[EMAIL PROTECTED] > S

RE: [PHP-WIN] Cookies!

2004-10-26 Thread Zareef Ahmed
PROTECTED] Cc: [EMAIL PROTECTED] Subject: RE: [PHP-WIN] Cookies! Hi Dale, Sorry for emailing you again (and anyone else who can help) - but I'm getting a bit desperate! I've got to finish this project today - 2 hours to go I need to sort out the user authentication into the applica

RE: [PHP-WIN] Cookies!

2004-10-26 Thread Nunners
ase can someone assist me! Thanks James > -Original Message- > From: Dale Attree [mailto:[EMAIL PROTECTED] > Sent: 12 October 2004 18:23 > To: Nunners > Subject: RE: [PHP-WIN] Cookies! > > Yes, same concept, different implementation. > > -Original Mess

RE: [PHP-WIN] Cookies!

2004-10-11 Thread Nunners
ne of the things I'm able to stipulate is that they have IE6 & Cookies turned on! Any thoughts? Cheers James > -Original Message- > From: Sudeep Zamudra [mailto:[EMAIL PROTECTED] > Sent: 09 October 2004 09:14 > To: James Nunnerley > Cc: [EMAIL PROTECTED] >

Re: [PHP-WIN] Cookies!

2004-10-09 Thread Sudeep Zamudra
Hi James, Php on IIS or PWS are known to have problems with session and cookie. Try using session instead of cookie. That's the safest way. Also anyone can disable cookies on the client side where by your login authentcation may fail. So best way is use session instead of cookie.

[PHP-WIN] Cookies & ini file

2004-10-07 Thread Nunners
Further to my earlier email, someone suggested looking at the settings within my php.ini file - I've done this, but I'm not quite sure what I'm looking for. I'm running IIS5 & PHP5. this is the cgi section of the ini file, which I think is the relevant bit - can someone give me some guidance as

[PHP-WIN] Cookies!

2004-10-07 Thread James Nunnerley
I'm trying to create a simple login script for user to the web application I'm writing. I previously wrote it for using PHP4 & Apache, however I've recently had to move to IIS5, and also upgraded to PHP5. [script] if (isset($_POST["username"]) AND isset($_POST["password"])) { $res=mysql_qu

[PHP-WIN] cookies and sessions...

2003-12-08 Thread Bobo Wieland
what is the difference between cookies, sessions and sessioncookies? I use sessions only when I design websites and it works great. But sometimes when I check the statistics for my sites the visiting paths ends with a PHPSID, but most of the time they don't. when does one occur and when does the o

RE: [PHP-WIN] cookies problem

2003-07-09 Thread Delacruz, Antonio M [ITS]
uld try the following cookie code if sessions won't work. php unique number cookie PHP UNIQUE NUMBERED COOKIE DATA Cookie Name: $c_name"; echo"Data: $c_data"; echo"Unix Time: $c_time"; echo"Converted time: "; echo"Path Accepted: $c_path"; echo"

Re: [PHP-WIN] cookies problem

2003-07-09 Thread Stephen March
<[EMAIL PROTECTED]> To: "Mark Anderson" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Wednesday, July 09, 2003 11:23 PM Subject: Re: [PHP-WIN] cookies problem : Mark, : :I've run in to this problem - first noticing this with PHP Nuke. : This cookie proble

Re: [PHP-WIN] cookies problem

2003-07-09 Thread Nick H. - Network Operations
n nor endorsed by it. - Original Message - From: "Stephen March" <[EMAIL PROTECTED]> To: "Mark Anderson" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Wednesday, July 09, 2003 11:23 PM Subject: Re: [PHP-WIN] cookies problem : Mark, : :I

Re: [PHP-WIN] cookies problem

2003-07-09 Thread Stephen March
Mark, I've run in to this problem - first noticing this with PHP Nuke. This cookie problem seems to be a result of a server configuration issue with the Windows operating system. At work I have 2 Win-2k servers, both running PHP 4.3.2, our production web-server can set cookies no problem

[PHP-WIN] cookies problem

2003-07-09 Thread Mark Anderson
Hi everybody: I have php 4.3.2 running as a isapi module on WinXP with IIS 5.1. When I run the following script: setcookie("auth_login",$cookie_val['auth_login'],time() + 3600); or setcookie("auth_level",$cookie_val['auth_level'],time() + 3600); it fails to set the cookie in browsers different o

[PHP-WIN] Cookies

2003-03-21 Thread Trystano
Hi, where can I locate a cookie that I set through my PHP script. I use the following line: setcookie("username", $name, time()1209600); ...with the $name variable being "Tryst" for example. I've search my Computer (Windows XP) and can't find the cookie. I've seached for the word "Username" an

Re: [PHP-WIN] Cookies and redirect issues with XP

2003-01-23 Thread Cam Dunstan
AIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, January 24, 2003 3:25 AM Subject: [PHP-WIN] Cookies and redirect issues with XP > Hello, > > I am new to the list so please forgive me if this issue has been covered > recently... I spent some time browsing previous posts onli

RE: [PHP-WIN] Cookies and redirect issues with XP

2003-01-23 Thread Rich Gray
:[EMAIL PROTECTED]] Sent: 23 January 2003 16:25 To: [EMAIL PROTECTED] Subject: [PHP-WIN] Cookies and redirect issues with XP Hello, I am new to the list so please forgive me if this issue has been covered recently... I spent some time browsing previous posts online but did not see anything like the

[PHP-WIN] Cookies and redirect issues with XP

2003-01-23 Thread Ellen Emerson
Hello, I am new to the list so please forgive me if this issue has been covered recently... I spent some time browsing previous posts online but did not see anything like the problem I am having. I have a system in place using sort of a fuse box methodology... An index page that includes modules

RE: [PHP-WIN] cookies problem

2003-01-18 Thread Chris Kranz
- From: Ed [mailto:[EMAIL PROTECTED]] Sent: Saturday, January 18, 2003 3:12 PM To: [EMAIL PROTECTED] Subject: [PHP-WIN] cookies problem I seem to be having a problem with cookies not being saved and I'm using W2k, IIS 5.0, with php 4.3. I just upgraded from a previous version of php t

[PHP-WIN] cookies problem

2003-01-18 Thread Ed
I seem to be having a problem with cookies not being saved and I'm using W2k, IIS 5.0, with php 4.3. I just upgraded from a previous version of php that worked fine. Anyone had this problem or know of a solution? Thanks, Ed -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, v

Re: [PHP-WIN] Cookies working on test but not my application

2002-12-19 Thread Stephen Edmonds
s" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Wednesday, December 18, 2002 7:41 AM Subject: RE: [PHP-WIN] Cookies working on test but not my application > Stephen, > > Thanks for the feedback. > > There was no sign of the cookies in the variable list that the phpin

RE: [PHP-WIN] Cookies working on test but not my application

2002-12-17 Thread George Pitcher
L PROTECTED]] > Sent: 17 December 2002 5:57 pm > To: PHP Helplist Windows > Cc: George Pitcher > Subject: Re: [PHP-WIN] Cookies working on test but not my application > > > Frames are not the issue here, any page in a frame still gets the cookie > providing it is in a domain fo

Re: [PHP-WIN] Cookies working on test but not my application

2002-12-17 Thread Stephen Edmonds
2002 4:29 PM Subject: [PHP-WIN] Cookies working on test but not my application > hi again, > > No response to my 2 earlier posts so here goes again. > > I have an authentication script which sets up a cookie, but it is not being > created. > > I have created some test pages

[PHP-WIN] Cookies working on test but not my application

2002-12-17 Thread George Pitcher
hi again, No response to my 2 earlier posts so here goes again. I have an authentication script which sets up a cookie, but it is not being created. I have created some test pages on the same server (NT/IIS4) setting cookies with variable values and they work fine. It's just that they won't work

Re: [PHP-WIN] Cookies do not work

2002-09-23 Thread Sjaak
Yes the same version on both servers :( register_globals is set to off (also tried with on, same result) "Sjaak" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Thx for know > > > "Brother - Martin Bagge" <[EMAIL PROTECTED]> wrote in message > [EMAIL PROTEC

Re: [PHP-WIN] Cookies do not work

2002-09-23 Thread Sjaak
Thx for know "Brother - Martin Bagge" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Do you have the same PHPversion in the servers? > Is register_globals set to off or on in php.ini? Same setting in both > servers? > > $_COOKIES is the new super global array

RE: [PHP-WIN] Cookies do not work

2002-09-23 Thread brother - Martin Bagge
Do you have the same PHPversion in the servers? Is register_globals set to off or on in php.ini? Same setting in both servers? $_COOKIES is the new super global array for cookies, don't forget that =) I cann't see any other explaniation but I'm new to this cookiething. /brother > -Original

Re: [PHP-WIN] Cookies do not work

2002-09-23 Thread Sjaak
> new page to check the cookies. > > /brother > > > -Original Message- > > From: Sjaak [mailto:[EMAIL PROTECTED]] > > Sent: den 23 september 2002 09:15 > > To: [EMAIL PROTECTED] > > Subject: [PHP-WIN] Cookies do not work > > > > > > De

RE: [PHP-WIN] Cookies do not work

2002-09-23 Thread brother - Martin Bagge
t; Sent: den 23 september 2002 09:15 > To: [EMAIL PROTECTED] > Subject: [PHP-WIN] Cookies do not work > > > Dear all, > > I have a Windows2000 server with PHP & IIS5 > > My customer has written the following script: > > > > > //Verbindin

[PHP-WIN] Cookies do not work

2002-09-22 Thread Sjaak
Dear all, I have a Windows2000 server with PHP & IIS5 My customer has written the following script: Openingstijden:"; $query = mysql_query ("SELECT * from openingstijden"); echo ""; echo "Nr.VestigingMaandag "; //$teller = 1; while ($row = mysql_fetch_array ($query)) { echo "".$teller."

Re: [PHP-WIN] cookies in windows

2002-06-27 Thread michael
> Wich of the serers is using which configuration for session.save_path? > I your local sever is using session.save_path - /tmp, then try using an > absolute path, like "C:\Temp", but make sure the directory exists. Localhost has c:\winnt\temp and that folder is set for everyone to do everything T

Re: [PHP-WIN] cookies in windows

2002-06-27 Thread Daniel Berwig
Wich of the serers is using which configuration for session.save_path? I your local sever is using session.save_path - /tmp, then try using an absolute path, like "C:\Temp", but make sure the directory exists. And I know it may sound a little obvious, but take a look at your php.ini file and make

Re: [PHP-WIN] cookies in windows - get url.exe [1/1]

2002-06-27 Thread michael
Great util! I get Set-Cookie: some cookie when I use the URL where it works, but not on localhost. strange... -- . : . : . : . : . : . : . : . : . : . : . : . : . : . michael ericsson [EMAIL PROTECTED] "Alex Elderson" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTE

Re: [PHP-WIN] cookies in windows - get url.exe [1/1]

2002-06-27 Thread michael
done. Is it .NET Framework you're refering to? -- . : . : . : . : . : . : . : . : . : . : . : . : . : . michael ericsson [EMAIL PROTECTED] "Alex Elderson" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Sorry, outlook don't want to send the file. > > download

Re: [PHP-WIN] cookies in windows - get url.exe [1/1]

2002-06-27 Thread Alex Elderson
Sorry, outlook don't want to send the file. download it from http://debug.hardinxveld.netflex.nl/get_url.exe you must also install the VB runtime library!! let me know if you downloaded the file then i will remove the file [EMAIL PROTECTED] "Michael" <[EMAIL PROTECTED]> schreef in bericht [EM

Re: [PHP-WIN] cookies in windows - get url.exe [1/1]

2002-06-27 Thread michael
what util? url.exe? where can I find it? -- . : . : . : . : . : . : . : . : . : . : . : . : . : . michael ericsson [EMAIL PROTECTED] "Alex Elderson" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Use this (small) util to view your headers > > look for > > Se

Re: [PHP-WIN] cookies in windows

2002-06-27 Thread michael
> My guess is that it's register_globals related. > Your code is not the only variable when moving from server to server. Check the > PHP version on the other server and also compare your register_globals setting > to theirs. They're all the same. Both are version 4.2.1 and register_blobals is se

Re: [PHP-WIN] cookies in windows - get url.exe [1/1]

2002-06-27 Thread Alex Elderson
Use this (small) util to view your headers look for Set-Cookie: In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] says... > >On Thursday, June 27, 2002, 9:55:00 AM, "michael" wrote: > >> I've installed php v4.2.1 on my IIS (Win2000). The IIS works fine with php >> but I can't set a cookie.

Re: [PHP-WIN] cookies in windows

2002-06-27 Thread Stuart Dallas
On Thursday, June 27, 2002, 9:55:00 AM, "michael" wrote: > I've installed php v4.2.1 on my IIS (Win2000). The IIS works fine with php > but I can't set a cookie. There is no error message or anything, only no > cookie. Does anyone have an idea what might be wrong? My guess is that it's register_

[PHP-WIN] cookies in windows

2002-06-27 Thread michael
I've installed php v4.2.1 on my IIS (Win2000). The IIS works fine with php but I can't set a cookie. There is no error message or anything, only no cookie. Does anyone have an idea what might be wrong? There's nothing wrong in my code cause it works fine on another server, just not on localhost.

[PHP-WIN] R: [PHP-WIN] Cookies and IIS5

2002-04-08 Thread Alberto. Sartori
I've used for several time my pc with IIS5 and php with no problem. And I can use the cookies quitelly.what kind of problem you got? -Messaggio originale- Da: John Braden [mailto:[EMAIL PROTECTED]] Inviato: lunedì 8 aprile 2002 14.50 A: [EMAIL PROTECTED] Oggetto: [PHP-WIN] Co

[PHP-WIN] Cookies and IIS5

2002-04-08 Thread John Braden
I've looked thru some of the posts and noticed quite a few issues with this configuration. Has anyone had any luck getting cookies working with PHP and IIS5? I have an application that is having some login problems which I believe are cookie related (No cookie is even being sent!!). Thanks..

[PHP-WIN] Cookies on Win2000 and IIS 5.0

2002-03-26 Thread Arijit Chaudhuri
Hi, PHP and MySQL runs perfectly on Win2000 with IIS 5.0. The only problem seems to be with cookies which are set only only refreshing the browser. Same codes run perfectly on my Linux partition and on Linux servers. Is any tweaking required for the php.ini file? Regards, Arijit -- PHP Windo

[PHP-WIN] Cookies not working right on Win 2000 and IIS 5

2002-03-15 Thread Arijit Chaudhuri
Hi, Apart from RedHat Linux, I have also started using PHP on Windows 2000 Professional with MySQL database. Eveything is working perfectly except cookies. As an example, if I use the following code: "test" is not printed at first. If I do a browser refresh, it does get printed. This is true e

RE: [PHP-WIN] Cookies

2002-02-01 Thread Shrock, Court
sorry to be a pest but, not necessarilyfor example: two different "sites" hosted on the same server in the same domain http://www.mydomain.com/dir1/login.php http://www.mydomain.com/dir2/login.php do not necessarily share the same cookies.if the domain(url) is set to "www.mydomain.

RE: [PHP-WIN] Cookies

2002-02-01 Thread Shrock, Court
another solution: since they changed their code for you already, you might try to get them to add your domain to the list of valid domains in the cookie that they set, therefore, your scripts would be able to pick them upjust a thought. -- PHP Windows Mailing List (http://www.php.net/)

Re: [PHP-WIN] Cookies

2002-02-01 Thread Angie Tollerson
Sorry everyone, I had a brain spasm or something. I was reminded that cookies only work on the same domain, and since the webspeed scripts were creating the cookie on out test server and php was on the production server it was a no go. Thanks! Angie >>> "Angie Tollerson" <[EMAIL PROTECTED]> 02/

RE: [PHP-WIN] Cookies

2002-02-01 Thread Shrock, Court
I might not understand what you mean by "Webspeed page that is passing to my php page". Is your browser requesting the Webspeed page, or is your php script connecting to webspeed directly via a call to fopen? What domain(url) was the original cookie made valid for? If you are requesting your sc

[PHP-WIN] Cookies

2002-02-01 Thread Angie Tollerson
I have a WebSpeed page that is passing to my php page. They are using session cookies to test for login status. I didn't think there was anyway for me to test for a session cookie set by another language using php. So I had them create an additional client cookie for me to test by. Not only di

[PHP-WIN] Cookies

2002-01-01 Thread Chris Burwell
I have a user authentication script that compares the information the user enters t the information that is in a database table. When the user enter the correct information (Username and password) Two cookies are set one for the username and one for the password. My problem is when the user is red

[PHP-WIN] Cookies and headers

2001-07-31 Thread Leon
Lo all Headers and cookies are really becoming a bugger! What I'd like to know is: 1. Do headers and setcookie() functions have to be in direct succession? 2. Is there a time limit for the setcookie() to be executed from the time the header is sent? ie 30sec P.S.: WILL PPL PLEASE STOP USING TH

RE: [PHP-WIN] Cookies In IE5.5

2001-03-18 Thread Mangiola Nunzio Datavia
--- > From: Ben Cairns[SMTP:[EMAIL PROTECTED]] > Sent: Sunday, March 18, 2001 1:45 AM > To: [EMAIL PROTECTED] > Subject: [PHP-WIN] Cookies In IE5.5 > > How do I set a cookie in IE5, > > I cant do it, it just wont let me...I have looked at php.n

[PHP-WIN] Cookies In IE5.5

2001-03-17 Thread Ben Cairns
How do I set a cookie in IE5, I cant do it, it just wont let me...I have looked at php.net and have tried the examples there, but they don't seem to work! HELP, Please -- Ben Cairns E-Mail: [EMAIL PROTECTED] Just Because It Works, Doesn't Mean It Isn't Broken -- PHP Windows Mailing List

[PHP-WIN] Cookies over different paths ...

2001-03-13 Thread phobo
If I set a cookie in www.domain.com/login/authenticate.php , how do i access it in www.domain.com/program/functions.php for example?? it doesn't seem to be set in HTTP_POST_VARS when different folders are used. I tried specifying the path/domain parameters in setcookie() ... in vain. I dont wa