[PHP] confirmation of what functions open_basedir will restrict?

2010-03-23 Thread Julian Dunn
Hi all, I'm an ex-PHP programmer turned PHP sysadmin. I read the "core php.ini" documentation and wanted to confirm what functions exactly open_basedir will restrict. "Examples" are made of fopen() and gzopen() -- what else is there? Will require_once() and include() be unaffected? I assume those

Re: [PHP] Confirmation email caught by spam filter

2009-05-29 Thread LAMP
partially, this is my issue. but it looks like the message "add the email address ord...@mydomain.com to you address book" didn't help. at least not noticeable. afan Dee Ayy wrote: Are you sure it's a PHP thing? The way I have some of my email accounts setup is that I only accept email fro

Re: [PHP] Confirmation email caught by spam filter

2009-05-29 Thread Dee Ayy
Are you sure it's a PHP thing? The way I have some of my email accounts setup is that I only accept email from folks in my address book. If I just registered a new account somewhere, chances are I do not have them in my address book, so it will go to the Junk/Spam folder. If this is your issue,

Re: [PHP] Confirmation email caught by spam filter

2009-05-28 Thread Per Jessen
Ashley Sheridan wrote: > On Thu, 2009-05-28 at 07:45 +0200, Per Jessen wrote: >> Ashley Sheridan wrote: >> >> > I've also seen this happen where the address that the mail was sent >> > from is different from the MX record for the domain the email says >> > it is sent from. The only way round this

Re: [PHP] Confirmation email caught by spam filter

2009-05-28 Thread Tom Worster
On 5/28/09 3:20 AM, "Ashley Sheridan" wrote: > Would setting up a backup MX record solve this do you think? this is what the spf record is for. http://en.wikipedia.org/wiki/Sender_Policy_Framework -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/u

Re: [PHP] Confirmation email caught by spam filter

2009-05-28 Thread Ashley Sheridan
On Thu, 2009-05-28 at 07:45 +0200, Per Jessen wrote: > Ashley Sheridan wrote: > > > I've also seen this happen where the address that the mail was sent > > from is different from the MX record for the domain the email says it > > is sent from. The only way round this is to have the MX and A record

Re: [PHP] Confirmation email caught by spam filter

2009-05-28 Thread Ashley Sheridan
On Wed, 2009-05-27 at 16:54 -0400, Stephen wrote: > Ashley Sheridan wrote: > > I've also seen this happen where the address that the mail was sent > > from > > is different from the MX record for the domain the email says it is sent > > from. The only way round this is to have the MX and A records

Re: [PHP] Confirmation email caught by spam filter

2009-05-27 Thread Per Jessen
Ashley Sheridan wrote: > I've also seen this happen where the address that the mail was sent > from is different from the MX record for the domain the email says it > is sent from. The only way round this is to have the MX and A records > point to the same server. It's not a real problem - lots o

Re: [PHP] Confirmation email caught by spam filter

2009-05-27 Thread Ashley Sheridan
On Wed, 2009-05-27 at 14:41 -0400, Tom Worster wrote: > On 5/27/09 12:07 PM, "LAMP" wrote: > > > The problem is the confirmation emails and "reset password" emails are > > very often caught by email filter and finish in Spam/Junk folder, or > > even stopped by ISP. What am I doing wrong, or what

Re: [PHP] Confirmation email caught by spam filter

2009-05-27 Thread Tom Worster
On 5/27/09 12:07 PM, "LAMP" wrote: > The problem is the confirmation emails and "reset password" emails are > very often caught by email filter and finish in Spam/Junk folder, or > even stopped by ISP. What am I doing wrong, or what to do to improve the > code? i've run into this. among many fa

Re: [PHP] Confirmation email caught by spam filter

2009-05-27 Thread Bastien Koert
On Wed, May 27, 2009 at 1:44 PM, Per Jessen wrote: > LAMP wrote: > > > The problem is the confirmation emails and "reset password" emails are > > very often caught by email filter and finish in Spam/Junk folder, or > > even stopped by ISP. What am I doing wrong, or what to do to improve > > the

Re: [PHP] Confirmation email caught by spam filter

2009-05-27 Thread Per Jessen
LAMP wrote: > The problem is the confirmation emails and "reset password" emails are > very often caught by email filter and finish in Spam/Junk folder, or > even stopped by ISP. What am I doing wrong, or what to do to improve > the code? You need to look at where you are sending the email from,

Re: [PHP] Confirmation email caught by spam filter

2009-05-27 Thread LAMP
Andrew Ballard wrote: On Wed, May 27, 2009 at 12:07 PM, LAMP wrote: hi, I use the following code (from php.net) to send confirmation email to the person that just created an account: $headers ="MIME-Versin: 1.0\n" . "Content-type: text/plain; charset=ISO-8859-1; format=f

Re: [PHP] Confirmation email caught by spam filter

2009-05-27 Thread Andrew Ballard
On Wed, May 27, 2009 at 12:07 PM, LAMP wrote: > hi, > I use the following code (from php.net) to send confirmation email to the > person that just created an account: > >  $headers =    "MIME-Versin: 1.0\n" . >                "Content-type: text/plain; charset=ISO-8859-1; > format=flowed\n" . >  

[PHP] Confirmation email caught by spam filter

2009-05-27 Thread LAMP
hi, I use the following code (from php.net) to send confirmation email to the person that just created an account: $headers ="MIME-Versin: 1.0\n" . "Content-type: text/plain; charset=ISO-8859-1; format=flowed\n" . "Content-Transfer-Encoding: 8bit\n" .

RE: [PHP] confirmation email script/code

2005-09-12 Thread Jim Moseby
> > -Original Message- > From: Jim Moseby [mailto:[EMAIL PROTECTED] > Sent: Monday, September 12, 2005 8:56 AM > To: '[EMAIL PROTECTED]'; php-general@lists.php.net > Subject: RE: [PHP] confirmation email script/code > > > > has anybody come across

RE: [PHP] confirmation email script/code

2005-09-12 Thread bruce
the process a given user is/was... any good/quick guides you can point me to! thanks -bruce -Original Message- From: Jim Moseby [mailto:[EMAIL PROTECTED] Sent: Monday, September 12, 2005 8:56 AM To: '[EMAIL PROTECTED]'; php-general@lists.php.net Subject: RE: [PHP] confirma

RE: [PHP] confirmation email script/code

2005-09-12 Thread Jim Moseby
> has anybody come across a really good 'open source' chunk of code for > sending/recieving confirmation emails from an app... i'd like > to allow the > user to register, and send them an email that they then have > to hit the link > to complete the process.. It is strightforward to write this y

[PHP] confirmation email script/code

2005-09-12 Thread bruce
hi.. has anybody come across a really good 'open source' chunk of code for sending/recieving confirmation emails from an app... i'd like to allow the user to register, and send them an email that they then have to hit the link to complete the process.. thanks -bruce [EMAIL PROTECTED] -- PHP Ge

RE: [PHP] confirmation [Qurb #909251]

2004-02-20 Thread Ed Lazor
Hrm. I just turned this on today. The problem has been occurring all week. I run 47 websites so I get a lot of spam. Qurb has you confirm you're a real person once by replying to the message and all's good from that point forward. The PHP mailing list is already added to the approved list of a

Re: [PHP] confirmation [Qurb #909251]

2004-02-20 Thread John Nichel
Ed Lazor wrote: This is an automated message. I apologize for the inconvenience, but I need your help in fighting spam. I'm using a program called Qurb which automatically maintains a list of approved senders for me. Messages from approved senders go directly to my Inbox. Messages from addresses t

RE: [PHP] confirmation

2004-02-20 Thread Ed Lazor
I did that time... must have been a problem on my email server. Thanks for helping me verify that it's working now. -Ed -Original Message- > Is there a way to enable a confirmation message or change it so that I > get copies of messages I send to the list? > > Thanks, > > Ed Um, di

Re: [PHP] confirmation

2004-02-20 Thread John Nichel
Ed Lazor wrote: Is there a way to enable a confirmation message or change it so that I get copies of messages I send to the list? Thanks, Ed Um, did you get the message that you just sent? -- By-Tor.com It's all about the Rush http://www.by-tor.com -- PHP General Mailing List (http://www.php.net

RE: [PHP] confirmation

2004-02-20 Thread Jay Blanchard
[snip] Is there a way to enable a confirmation message or change it so that I get copies of messages I send to the list? [/snip] cc yourself? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] confirmation

2004-02-20 Thread Ed Lazor
Is there a way to enable a confirmation message or change it so that I get copies of messages I send to the list? Thanks, Ed

Re: [PHP] Confirmation e-mail

2003-02-13 Thread Krzysztof Dziekiewicz
>> I am developing a website with a user login system, i would like to send >> an confirmation e-mail to the user when he/she registers for the site, >> asking for confirmation...for instance click on a link to activate thier >> account. >> My question is what would be the best approach to achieve

Re: [PHP] Confirmation e-mail

2003-02-10 Thread PHP
There is a good article on user management @ www.devarticles.com - Original Message - From: "Davy Obdam" <[EMAIL PROTECTED]> To: "PHP" <[EMAIL PROTECTED]>; "PHP-WIN" <[EMAIL PROTECTED]>; "PHP-DB" <[EMAIL PROTECTED]> Sent:

[PHP] Confirmation e-mail

2003-02-09 Thread Davy Obdam
Hello people., I am developing a website with a user login system, i would like to send an confirmation e-mail to the user when he/she registers for the site, asking for confirmation...for instance click on a link to activate thier account. My question is what would be the best approach to achi

Re: [PHP] PHP confirmation window

2002-11-30 Thread Jason Sheets
If you are wanting to do it on the client side you will need to do it in javascript, not in PHP. If you just want to make a confirmation screen in PHP you just present an intermediate screen between the requested action and completing that action. An example would be: 1. Administrator clicks del

[PHP] PHP confirmation window

2002-11-30 Thread Lars Espelid
Hello, Working in php, the problem is how to create a window with some optional text in it and get true or false in return. A confirmation window. Example in javascript: function formSubmit() { window.event.returnValue = false; if (confirm("Er du sikker på at du vil slette boenheten?")) win

Re: [PHP] Confirmation Requester

2001-07-20 Thread Sheridan Saint-Michel
t you want. Sheridan > -Original Message- > From: Dave Freeman [mailto:[EMAIL PROTECTED]] > Sent: Friday, July 13, 2001 5:23 PM > To: [EMAIL PROTECTED] > Subject: [PHP] Confirmation Requester > > Hi All > > I'm really not sure if this is php or, perhaps, j

RE: [PHP] Confirmation Requester

2001-07-19 Thread Ben Bleything
5:23 PM To: [EMAIL PROTECTED] Subject: [PHP] Confirmation Requester Hi All I'm really not sure if this is php or, perhaps, javascript. I have a php application in development. On one page I have a list of information extracted from a mysql database. I have links beside each line to edit

[PHP] Confirmation Requester

2001-07-13 Thread Dave Freeman
Hi All I'm really not sure if this is php or, perhaps, javascript. I have a php application in development. On one page I have a list of information extracted from a mysql database. I have links beside each line to edit or delete that informaiton (which calls a php function to carry out the