Re: [PHP] Sensitive Information (like CC)

2001-04-23 Thread Aaron D. Turner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Have the email be a "you've got an order" email that has a URL in it which the then can view the order via SSL. That way you don't have to put all the information in the email. PGP is another option, but I find it beyond the abilities of many winbl

Re: [PHP] file upload temp file is and isn't there

2001-02-13 Thread Aaron D. Turner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ah, figured out the problem. MAX_FILE_SIZE is in BYTES not Kilobytes. Any file >5K was killed. - -- Aaron Turner <[EMAIL PROTECTED]|synfin.net|linuxkb.org> URI:www.synfin.net They that can give up essential liberty to obtain a little temporary s

Re: [PHP] file upload temp file is and isn't there

2001-02-13 Thread Aaron D. Turner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Tue, 13 Feb 2001, jason cox wrote: > Aaron, > > Are you processing the file on the page you're > "posting" to? Yep. A little more info this time. Ok this makes no freaking sense to me: I can upload my /etc/passwd file - -rw-r--r--1 roo

Re: [PHP] file upload temp file is and isn't there

2001-02-13 Thread Aaron D. Turner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Tue, 13 Feb 2001, Michael McGlothlin wrote: > A lil clip from Devedge.. you need a VALUE="" field along w/ a NAME="" > maybe? A VALUE= isn't required for TYPE=file (and adding it didn't solve my problem). > This places an element on an HTML

[PHP] file upload temp file is and isn't there

2001-02-13 Thread Aaron D. Turner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Solaris 7 Apache 1.3.14 PHP 4.0.4p1 For the life of me I can't figure out what's going on. I have: Choose File: and I can try to upload a file, but then the HTTP_POST_FILES hash doesn't get properly populated and no file is s

[PHP] Using PHP as generic security wrapper for content

2001-01-29 Thread Aaron D. Turner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 While this isn't a really a PHP problem, I figured I can't be the first person to ever have tried to solve this problem. Basically I have a web site with many kinds of content (static html, PHP, cgi's of various flavors, etc) and I'm looking to crea

RE: [PHP] Cookie with Netscape

2001-01-29 Thread Aaron D. Turner
didn't make a difference. I > printed the var right after the set and it returns null. > > setcookie("cbcookie1",$domain,0,"/","mydomain.com"); > $domain = $HTTP_COOKIE_VARS["cbcookie1"]; > echo "domain(

Re: [PHP] Cookie with Netscape

2001-01-29 Thread Aaron D. Turner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Mon, 29 Jan 2001, Eugene Yi (InfoSpace Inc) wrote: > I set up a cookie using the following command and it works fine under IE but > not in Netscape. Am I doing something wrong? > > setcookie("mycookie[1]",$domain,"","/","mydomain.com"); Should

[PHP] Using PHP to do centralized site authentication

2001-01-26 Thread Aaron D. Turner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I'm trying to do something in PHP4.0.4p1 that in the past I've done in mod_perl, but appears to be more difficult. Basically I have some PHP code that does access checks against a DB to see if that user has access to the requested URL. I'm using mo