Re: [PHP] Session Logout Problems

2004-03-09 Thread Bob Irwin
should rule out a client problem. Here's an example of oe of the links they use... is the bug only when posting a form, or could it also affect links like below? Purge Deleted Regards, Bob Irwin Server Admin & Web Apps "I'm a Brick!" - Original Messa

[PHP] Session Logout Problems

2004-03-09 Thread Bob Irwin
ire = 180 session.use_trans_sid = 0 Regards, Bob Irwin Server Admin & Web Apps "I'm a Brick!" Scanned by PeNiCillin http://safe-t-net.pnc.com.au/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Sessions Question

2003-06-27 Thread Bob Irwin
Oops. Forgot to remove the Re: - it was a new thread - I just replied to an old message to get the php list email address then managed to stuff the subject up. Thanks for the help though! Best Regards Bob Irwin *** Email [EMAIL PROTECTED] for speedy email response *** - Original Message

[PHP] Sessions Question

2003-06-26 Thread Bob Irwin
Aside from the fact that bad code can obviously make sessions hackable, what does everyone think about the security of sessions? I rely on them fairly heavily for low-mid range security on some of my scripts, but if I was to do something that involved more sensitive info, are sessions bullet proof

[PHP] Access DB & PHP

2003-03-16 Thread Bob Irwin
DB.4.0; Data > Source='c:\\home\\westir\\data\\libcat.mdb'"); > $sql = "SELECT * FROM tbl_name "; > $result = $conn->Execute($sql); > > // deal with the database generated information > > $result->Close() > $conn->Close Is there a better way to

Re: [PHP] fopen and file dump to a databace...

2003-03-09 Thread Bob Irwin
that element in the array. echo"Index: $barry Value: $tbone "; //just insert into the database what you need to. } Best Regards Bob Irwin Server Admin & Web Programmer Planet Netcom - Original Message - From: "Mark Tehara" <[EMAIL PROTECTED]&g

Re: [PHP] strange behaviour with login page

2003-03-09 Thread Bob Irwin
In my case, it was a https website. However, in testing, it was happening on a normal http website as well. It was something I ruled out trying to find the problem. Best Regards Bob Irwin Server Admin & Web Programmer Planet Netcom - Original Message - From: "Andre Dubuc

Re: [PHP] strange behaviour with login page

2003-03-09 Thread Bob Irwin
. As I said, the upgrade helped us (also fixed a few mysql query caching problems we were having too - caused a few GD ones though). My guess is that its some sort of cookies problem with windows IE 6 (as that was the only browser I saw the problem on). Best Regards Bob Irwin Server Admin & Web

Re: [PHP] array question

2003-02-24 Thread Bob Irwin
ngs are) I'm sure its an easy piece of code, like a string function, but I'm buggered if I can find it! Best Regards Bob Irwin Server Admin & Web Programmer Planet Netcom Scanned by PeNiCillin http://safe-t-net.pnc.com.au/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php_mcrypt.dll

2003-02-20 Thread Bob Irwin
p.net:/manual/en/ref.mcrypt.php Best Regards Bob Irwin Server Admin & Web Programmer Planet Netcom - Original Message - From: "Daniel Guerrier" <[EMAIL PROTECTED]> To: "php user group" <[EMAIL PROTECTED]> Sent: Friday, February 21, 2003 4:12 PM Subjec

[PHP] Reading Directory in reverse

2003-01-22 Thread Bob Irwin
uot;cannot open $default_dir"); while($file = readdir($dp)) if($file != '.' && $file != '..') echo"$file"; closedir($dp); Best Regards Bob Irwin Server Admin & Web Programmer Planet Netcom -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] URL hiding

2002-11-26 Thread Bob Irwin
There may be an easier way, but I usually use sessions when I want to pass variables around that I want to remain hidden, but want to use links. Best Regards Bob Irwin Server Admin & Web Programmer Planet Netcom - Original Message - From: "Kris" <[EMAIL PROTECTED]&

Re: [PHP] Seconds to minutes

2002-11-19 Thread Bob Irwin
Ahhh - that works a treat! First time I've seen the floor command in action. Thanks Jonathon. Still more lines of code than I'd like, but obviously its not that easy to do! Best Regards Bob Irwin Server Admin & Web Programmer Planet Netcom - Original Message - From: &

Re: [PHP] Seconds to minutes

2002-11-19 Thread Bob Irwin
'd be the go to do it right the first time. Anyone else know of a better way? Best Regards Bob Irwin Server Admin & Web Programmer Planet Netcom - Original Message - From: "John W. Holmes" <[EMAIL PROTECTED]> To: "'Matt'" <[EMAIL PROTECTED]&g

[PHP] Seconds to minutes

2002-11-19 Thread Bob Irwin
ode? Any ideas or input would be appreciated. Best Regards Bob Irwin Server Admin & Web Programmer Planet Netcom Scanned by PeNiCillin http://safe-t-net.pnc.com.au/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] if conditional

2002-10-15 Thread Bob Irwin
If the code isn't working, its because you weren't using a $name in the first if statement. Always the little things ! :) But this should work... if (!$name) { print "please enter your name."; } if (!$email) { print "Please enter you e-mail"; } > > > Hello, > > > > I would like to how

[PHP] Speeding up a Mysql Select

2002-10-08 Thread Bob Irwin
port where begintime between 'timestamp1' and 'timestamp2'; It takes a while to execute... The timestamp fieldtype is varchar(10)... Will I see any speed difference with a different column type? Any advice on how to speed this up would be greatly appreciated! :) Best Regards Bob Irwin

Re: [PHP] Cookie

2002-10-01 Thread Bob Irwin
I'm pretty sure this is a global variables problem. There is an option in your ini.php file that refers to 'global variables' You need to set this on, otherwise reference to them with the absolute variable name. Best Regards Bob Irwin Server Admin & Web Programmer Planet Ne

Re: [PHP] PHP and Flash

2002-10-01 Thread Bob Irwin
pics - I'm assuming it's still in dev. Netscape 6.2.3 works as well. Mozilla loads the horse, but doesn't load the textbox for some reason. Best Regards Bob Irwin Server Admin & Web Programmer Planet Netcom - Original Message - From: "Peter Houchin" <[EMAI

[PHP] Multiple Tables Select

2002-09-30 Thread Bob Irwin
thin the range I am trying to select on. Any ideas what I'm doing wrong? Any help is greatly appreciated. Been staring at the monitor for a while dribbling :) Best Regards Bob Irwin Server Admin & Web Programmer Planet Netcom -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] I don't want multiple form submitted

2002-09-26 Thread Bob Irwin
o problems. Best Regards Bob Irwin Server Admin & Web Programmer Planet Netcom - Original Message - From: "John Holmes" <[EMAIL PROTECTED]> To: "'Clemson Chan'" <[EMAIL PROTECTED]>; "'Php'" <[EMAIL PROTECTED]> Sent: Friday,

[PHP] HT authentication question

2002-09-24 Thread Bob Irwin
G'day, Is there a PHP function/method that destroys or expires a HT authentication session? So, for example, you're using a .htaccess file to control access to a directory on a server, is there a way to destroy that session without closing the browser window? Best Regards Bob Ir

Re: [PHP] Encryption of emails.

2002-09-05 Thread Bob Irwin
- From: "Justin French" <[EMAIL PROTECTED]> To: "Bob Irwin" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, September 05, 2002 4:00 PM Subject: Re: [PHP] Encryption of emails. > Perhaps not EXACTLY what you're after, but I wrote a small, sim

[PHP] Encryption of emails.

2002-09-04 Thread Bob Irwin
much appreciated! Best Regards Bob Irwin Server Admin & Web Programmer Planet Netcom -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Dumb question

2002-08-21 Thread Bob Irwin
You need to declare $vari as a global variable. eg; Best Regards Bob Irwin Server Admin & Web Programmer Planet Netcom - Original Message - From: "Liam MacKenzie" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, August 22, 2002 1:27 PM Subject: [

Re: [PHP] Session problems: "Warning: write failed: Disk quota exceeded"

2002-08-21 Thread Bob Irwin
e a lot of applications on a hosting server that might use /tmp to store temporary files, so I suppose it is possible that something has filled /tmp up and PHP simply can't write to it because there is no where to write to! Call your host is my advice. Best Regards Bob Irwin Server Admin & We

Re: [PHP] Further Security Clarifications [was: Simple Security Clarifcation]

2002-08-21 Thread Bob Irwin
> Thanks Bob, > > Got a 404: File not Found. Checked the ssl_error_log as suggested, and found > a rather interesting entry: > "No such file: /var/www/html/var/www/secure/test.php" Ahhh - ok - I thought you were including them internally from PHP. You are actually linking to the file being SER

Re: [PHP] Further Security Clarifications [was: Simple Security Clarifcation]

2002-08-21 Thread Bob Irwin
e a require("/pathtofile/filename.php"); Works for me assuming I have the right permissions. Best Regards Bob Irwin Server Admin & Web Programmer Planet Netcom - Original Message - From: "Andre Dubuc" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thurs

Re: [PHP] MySQL vs Session?

2002-08-14 Thread Bob Irwin
ng, >but I am not familiar with how sessions scale. Best Regards Bob Irwin Server Admin & Web Programmer Planet Netcom -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Some questions.

2002-08-12 Thread Bob Irwin
revision will solve this (haven't got around to installing it). Best Regards Bob Irwin Server Admin & Web Programmer Planet Netcom - Original Message - From: "Justin French" <[EMAIL PROTECTED]> To: "mintbaggio" <[EMAIL PROTECTED]>; <[EMAIL PROTE

[PHP] Session Problems

2002-07-30 Thread Bob Irwin
= session_id(); As I say, this works fine on other pages in the same directory, with exactly the same code Best Regards Bob Irwin Server Admin & Web Programmer Planet Netcom -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Session problems based on browser?

2002-06-18 Thread Bob Irwin
sar Aracena" <[EMAIL PROTECTED]> Cc: "'Bob Irwin'" <[EMAIL PROTECTED]>; "'php-general'" <[EMAIL PROTECTED]> Sent: Wednesday, June 19, 2002 1:38 PM Subject: Re: [PHP] Session problems based on browser? > I mentioned a couple in a

Re: [PHP] Session problems based on browser?

2002-06-18 Thread Bob Irwin
'm not using the location function at all BTW. Best Regards Bob (Coffee + Laptop = KABOOM!) Irwin Server Admin & Web Programmer Planet Netcom - Original Message - From: "Chris Shiflett" <[EMAIL PROTECTED]> To: "Bob Irwin" <[EMAIL PROTECTED]> Cc: "p

Re: [PHP] Session problems based on browser?

2002-06-18 Thread Bob Irwin
...) in part of the transactions > that fail), try to use a relative URL in the header rather than the full > URL. This violates the standard, but it has been known to alleviate the > bug in IE, and other browsers will gracefully handle the relative URL > anyway. > > Chris > >

[PHP] Session problems based on browser?

2002-06-18 Thread Bob Irwin
G'day, I'm using scripts that are using sessions. A user logs into a main page with a master list of database entries. They go to another page, add a new database entry and it appears on the master list. The user adds another database entry and upon going back to the master list, the new entr