php-general Digest 26 Oct 2010 14:24:31 -0000 Issue 7007

2010-10-26 Thread php-general-digest-help
php-general Digest 26 Oct 2010 14:24:31 - Issue 7007 Topics (messages 309067 through 309079): Re: Check for existence of mail address 309067 by: fakessh.fakessh.eu 309071 by: Gary 309072 by: Per Jessen 309073 by: Gary 309075 by: TR Shaw 309076

Re: [PHP] Re: Check for existence of mail address

2010-10-26 Thread Per Jessen
Gary wrote: Jonathan Tapicer wrote: You can use this class: http://www.webdigi.co.uk/blog/wp-content/uploads/2009/01/smtpvalidateclassphp.txt It may not work for some SMTPs. It uses the concepts explained here:

[PHP] objects and $_SESSION access control

2010-10-26 Thread Lorenzo Marussi
hi List, I have written a library of php classes to manage database objects. So my application now access to this library instead of accessing directly to the database. Now, I need to add an access control to my classes, like a check to a $_SESSION variable. A solution can be add this lines in

Re: [PHP] Check for existence of mail address

2010-10-26 Thread TR Shaw
On Oct 25, 2010, at 6:46 PM, Daniel P. Brown wrote: On Mon, Oct 25, 2010 at 18:38, web...@blaettner.com wrote: Is there any other function which checks whether this address really exists? Of course not! Can you imagine the implications, insecurities, and privacy concerns that would

Re: [PHP] Check for existence of mail address

2010-10-26 Thread TR Shaw
On Oct 25, 2010, at 6:38 PM, web...@blaettner.com wrote: Hi, folks, I'm wondering how to checking existence of a given mail address like f...@bar.com . At 1st I tried: if f (filter_var ($maddr, FILTER_VALIDATE_EMAIL) === false) { /* some sort of error handling code here */ }

RE: [PHP] Check for existence of mail address

2010-10-26 Thread Bob McConnell
From: TR Shaw On Oct 25, 2010, at 6:46 PM, Daniel P. Brown wrote: On Mon, Oct 25, 2010 at 18:38, web...@blaettner.com wrote: Is there any other function which checks whether this address really exists? Of course not! Can you imagine the implications, insecurities, and privacy

Re: [PHP] Check for existence of mail address

2010-10-26 Thread Daniel P. Brown
On Tue, Oct 26, 2010 at 08:49, TR Shaw ts...@oitc.com wrote: On Oct 25, 2010, at 6:46 PM, Daniel P. Brown wrote:    Of course not!  Can you imagine the implications, insecurities, and privacy concerns that would be associated with that?  Some mailservers will confirm or deny if a local

[PHP] Re: objects and $_SESSION access control

2010-10-26 Thread Nathan Rixham
Lorenzo Marussi wrote: hi List, I have written a library of php classes to manage database objects. So my application now access to this library instead of accessing directly to the database. Now, I need to add an access control to my classes, like a check to a $_SESSION variable. A solution

Re: [PHP] Check for existence of mail address

2010-10-26 Thread TR Shaw
On Oct 26, 2010, at 8:49 AM, TR Shaw wrote: On Oct 25, 2010, at 6:38 PM, web...@blaettner.com wrote: Hi, folks, I'm wondering how to checking existence of a given mail address like f...@bar.com . At 1st I tried: if f (filter_var ($maddr, FILTER_VALIDATE_EMAIL) === false) { /*

Re: [PHP] Check for existence of mail address

2010-10-26 Thread TR Shaw
On Oct 26, 2010, at 9:28 AM, Bob McConnell wrote: From: TR Shaw On Oct 25, 2010, at 6:46 PM, Daniel P. Brown wrote: On Mon, Oct 25, 2010 at 18:38, web...@blaettner.com wrote: Is there any other function which checks whether this address really exists? Of course not! Can you

[PHP] Character encoding hell

2010-10-26 Thread Marc Guay
Hi folks, I've got a problem with character encoding that's threatening to kill my little brain. Here we go: I have a directory with a bunch of PDFs in it that my webpage displays links to. All of the files have the french character  in them. The operating system is Linux (I did not

Re: [PHP] Character encoding hell

2010-10-26 Thread Nicholas Kell
On Oct 26, 2010, at 10:56 AM, Marc Guay wrote: Hi folks, I've got a problem with character encoding that's threatening to kill my little brain. Here we go: I have a directory with a bunch of PDFs in it that my webpage displays links to. All of the files have the french character  in

Re: [PHP] Character encoding hell

2010-10-26 Thread Simcha Younger
On Tue, 26 Oct 2010 11:56:17 -0400 Marc Guay marc.g...@gmail.com wrote: I have a directory with a bunch of PDFs in it that my webpage displays links to. All of the files have the french character  in them. The operating system is Linux (I did not experience this problem on a Windows

Re: [PHP] Reminder On Mailing List Rules

2010-10-26 Thread tedd
At 11:23 PM -0400 10/24/10, Paul M Foster wrote: On Fri, Oct 22, 2010 at 12:35:43PM -0400, tedd wrote: At 4:54 PM -0400 10/21/10, Marc Guay wrote: Toilet seat. Up or down. Same thing? Sort of. No, everything down (seat and top) is the rule in my house. You should see how women often

Re: [PHP] Character encoding hell

2010-10-26 Thread Marc Guay
Are you using UTF-8? Could you be more specific? Do you mean in the browser/php header or in the filesystem? I created the file on a Windows machine, transferred them to a Linux machine, and the encoding of the page is UTF-8. I just noticed a strange thing which might shed some light. If I

Re: [PHP] Character encoding hell

2010-10-26 Thread Nicholas Kell
On Oct 26, 2010, at 11:38 AM, Marc Guay wrote: Are you using UTF-8? Could you be more specific? Do you mean in the browser/php header or in the filesystem? I created the file on a Windows machine, transferred them to a Linux machine, and the encoding of the page is UTF-8. I just

Re: [PHP] Character encoding hell

2010-10-26 Thread Marc Guay
 If I am understanding correctly, you are referring to a HTML specific issue where the HTML and browser configuration is displaying your characters improperly? No, the browser is displaying the characters of the filename fine (using htmlentities converts the ? unknown character into an Â.

Re: [PHP] Character encoding hell

2010-10-26 Thread Marc Guay
Again, if it helps, a link formatted in the same way to the same file links correctly on a windows machine. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Character encoding hell

2010-10-26 Thread Nicholas Kell
On Oct 26, 2010, at 12:00 PM, Marc Guay wrote: Again, if it helps, a link formatted in the same way to the same file links correctly on a windows machine. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php A windows server, or windows

Re: [PHP] Character encoding hell

2010-10-26 Thread Marc Guay
A windows server, or windows client to the same Linux server? I believe that this issue is starting to get a bit over my head, with the different operating systems involved and such. Windows server. This is over my head, too. I'm guessing that Windows and Linux encode filenames differently

Re: [PHP] Character encoding hell

2010-10-26 Thread a...@ashleysheridan.co.uk
Have you tried using the utf8 meta tag rather than using the htmlentities() function? That should solve the first issue, as I reckon the problem lies with the way your encoding the filename. Linux filesystems have far less limitations on filenames, so it could be that windows is doing

Re: [PHP] Character encoding hell

2010-10-26 Thread Marc Guay
Have you tried using the utf8 meta tag rather than using the htmlentities() function? That should solve the first issue, as I reckon the problem lies with the way your encoding the filename. The page is being encoded in UTF-8. Without htmlentities() the special character is displayed as a

Re: [PHP] Character encoding hell

2010-10-26 Thread Mari Masuda
On Oct 26, 2010, at 10:10 AM, Marc Guay wrote: A windows server, or windows client to the same Linux server? I believe that this issue is starting to get a bit over my head, with the different operating systems involved and such. Windows server. This is over my head, too. I'm guessing

Re: [PHP] Character encoding hell

2010-10-26 Thread a...@ashleysheridan.co.uk
Where is the filename coming from? Is it hard-coded in the script or is your script reading it from a directory listing? Have you checked to see if that filename is what you think it is on the Linux server? Was Apache the web server both times, or was iis used on windows? If it was, look for

Re: [PHP] Character encoding hell

2010-10-26 Thread Marc Guay
I think one way to do this is something like this (untested): This is a good idea, but I'm stubborn and believe it can be solved without adding more code. Thanks, though, I'll probably end up using it once I've ruined every other possibility. Marc -- PHP General Mailing List

Re: [PHP] Character encoding hell

2010-10-26 Thread Marc Guay
Where is the filename coming from? Is it hard-coded in the script or is your script reading it from a directory listing? The filename is being read from the file via scandir(). File created on Windows, transferred to *nix. Have you checked to see if that filename is what you think it is on

Re: [PHP] Character encoding hell

2010-10-26 Thread Bastien Koert
On Tue, Oct 26, 2010 at 1:32 PM, Mari Masuda mbmas...@stanford.edu wrote: On Oct 26, 2010, at 10:10 AM, Marc Guay wrote: A windows server, or windows client to the same Linux server? I believe that this issue is starting to get a bit over my head, with the different operating systems

Re: [PHP] Character encoding hell

2010-10-26 Thread Steve Staples
Have you checked to see if that filename is what you think it is on the Linux server? The character is shown as a question mark in putty. I've tried forcing a UTF-8 font to make sure it's not a rendering issue but it didn't seem to make a difference. I'm not convinced the encoding

Re: [PHP] Character encoding hell

2010-10-26 Thread Marc Guay
You say that in putty it is converted to a '?'?  so, on linux, the file name is no longer what you intended it to be, so wouldn't you then need to call the file EXACTLY as it is on the linux server? I thought this too at first, but if I run htmlentites() on the filename it displays the Â