Re: [PHP] Assign variable to a block of html code

2007-12-22 Thread php mail
Hi Everyone,

Thanks for pointing me to heredoc syntax. I've got it working out nicely now
;)

Regards,

Feris

On 12/20/07, Daniel Brown [EMAIL PROTECTED] wrote:

 On Dec 19, 2007 10:38 PM, php mail [EMAIL PROTECTED] wrote:
  Hi All,
 
  Is it possible to assign variable to a block of html code ?
 
  Something like this :
 
  $myblokvar = 
  table width=487 border=0 cellspacing=0 cellpadding=0
tr
  tdtable width=487 border=0 cellspacing=0 cellpadding=0
 [snp]
  /table/td
/tr
  /table
  ;
 
  Although example above is not working, what I want to achieve is
 something
  like that. Is it possible how can I do that ?

 If you absolutely want to do it that way, then escape your quotes
 in the HTML.  When you're using quotes to encapsulate a variable, any
 quotes contained within the value will cause a parse error.  One
 alternative is to use single-quotes for variable containment, and
 double-quotes throughout, or vice-versa.  These two methods will work:

 $variable = This is how you \escape\ quotes.;
 $variable = 'Using single quotes gives you the literal value,
 which means you can't do newlines and such.\n';

 However, your best bet is going to be using HEREDOC:

 $html =EOL

 Always be sure to use the three left carats as shown in the line
 above.  You can call EOL anything you want in the world, as long as it
 doesn't interfere with an existing part of your code within the same
 scope.  You can also use $variables within a HEREDOC, but things like
 newlines WILL NOT work.\n

 Also note that, when using HEREDOC syntax, you don't end the
 EOL with a semicolon.  And when you're done with your HEREDOC
 block, be sure to end it as the first thing on the line.  You can't
 have any spaces, tabs, or other characters before it.  And be sure to
 place your semicolon after it, as well, like so:
 EOL;

 --
 Daniel P. Brown
 [Phone Numbers Go Here!]
 [They're Hidden From View!]

 If at first you don't succeed, stick to what you know best so that you
 can make enough money to pay someone else to do it for you.



[PHP] Aspect Oriented framework

2007-12-22 Thread php mail
Hi All,

Anyone ever use this tools ? If so, which one is more recommended ?

- http://www.aophp.net/
- http://phpaspect.org/

Regards,

Feris


[PHP] Profiling PHP App

2007-12-19 Thread php mail
Hi All,

Is there any tool to profiling PHP app ?

Regards,

Feris


[PHP] Rejecting File Upload

2007-08-04 Thread php mail
Hi All,

How do I prior check file's size in server side before the upload process
begin ?

Regards,

Feris


RE: [PHP] system('bell'); ?

2006-02-04 Thread php-mail
Suppose someone had to :)

-Original Message-
From: Dan Harrington [mailto:[EMAIL PROTECTED] 
Sent: 04 February 2006 19:50
To: php-general@lists.php.net
Subject: RE: [PHP] system('bell'); ?


Ask not for whom the bell tolls, it tolls for thee!
 

-Original Message-
From: Gerry Danen [mailto:[EMAIL PROTECTED] 
Sent: Saturday, February 04, 2006 12:00 PM
To: tedd
Cc: php-general@lists.php.net
Subject: Re: [PHP] system('bell'); ?

bell is his C program... :)   Outputs an ascii 7 (bell) at the machine
where it runs. It basically outputs a character to stdout or stderr.

He probably has that machine next to his cash drawer...

Gerry

On 2/4/06, tedd [EMAIL PROTECTED] wrote:
 I simple wrote a small C program that basically sent a bell, 0x07 and 
 it opened my cash drawer. In php I just did system('bell'); and it 
 worked fine.
 
 Kevin

 Hi:

 Interesting! The statement system('bell'); is new to me.

 If I'm writing code on a hosted domain, and using that statement, 
 who's bell am I ringing?

 tedd

 --
 --
 --
 http://sperling.com/

 --
 PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: 
 http://www.php.net/unsub.php




--
Gerry
http://portal.danen.org/

--
PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:
http://www.php.net/unsub.php

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


__ NOD32 1.1393 (20060203) Information __

This message was checked by NOD32 antivirus system.
http://www.eset.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Truncate words in multiple paragraphs

2006-02-03 Thread php-mail
Would this work?

?

function trunc($string, $limit = 11)
{
$arr = array();
$arr = (preg_split('/\s/', preg_replace('/(\s)\s+/',
'\\1',$string)));
return implode(' ', array_slice($arr, 0, $limit));
}

$str = This is my\n\r\n\ntest string\nIsn't it nice?\r\nI quite like
it\n\nHow about you?;

echo trunk($str);

?

This returns:

This is my test string Isn't it nice? I quite like

Of course, the return doesn't preserve line breaks :)

HTH

Dan


http://chrome.me.uk

-Original Message-
From: Richard Lynch [mailto:[EMAIL PROTECTED] 
Sent: 03 February 2006 21:45
To: Verdon Vaillancourt
Cc: [EMAIL PROTECTED]; John Meyer; PHP eMail List
Subject: Re: [PHP] Truncate words in multiple paragraphs



Just do this:
$string = str_replace(\n, br, $string);
$string = trim_text($string);
$string = str_replace(br, \n, $string);

Actually br could be any sequence of non-whitespace characters
unlikely to be in the text in the first place.

On Fri, February 3, 2006 3:29 pm, Verdon Vaillancourt wrote:
 Hi Richard,

 I quickly realized this and fooled with a few variations. Also have to
 take into account that the br or the br / get counted as 1 or 2
 words respectively, and so the trim can end up in the wrong place.
 I've
 tried fiddling with counting the number of br's in the string and
 adding that to the truncation limit before the preg_split, but this is
 still not ideal.

 I'm going to have a look at your other suggestion too.

 Thanks for your thoughts :)
 verdon

 On 3-Feb-06, at 4:21 PM, Richard Lynch wrote:



 This would work if you replace the br / with br -- Otherwise,
 it's
 too likely to break up br / in the trim_text function and then
 you
 end up with:

 start of string ... almost 255 words, blah blah blahbr

 On Fri, February 3, 2006 11:25 am, John Meyer wrote:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1

 Verdon Vaillancourt wrote:
 Hi :)

 I am using the following function (that I found in the user
 comments
 on
 php.net manual) for trimming the number of words accepted via a
 form
 field

 // Truncation is by word limit, not character limit. So if you
 limit
 // to 255, then it will cut off a text item to 255 words, not 255
 characters
 function trim_text ($string, $truncation=250) {
 $string = preg_split(/\s+/,$string,($truncation+1));
 unset($string[(sizeof($string)-1)]);
 return implode(' ',$string);
 }


 How about
 $string = nl2br($string);
 $string = trim_text($string);
 $string = str_replace(br /,\n,$string);
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.4.2 (GNU/Linux)
 Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

 iD8DBQFD45Hzj60GAoLuoDkRAjSqAKCxvGlJmSCVHozWBDjjZnKMEZOfSwCfenVj
 lRSChtsMRqRnOYdZpk5YQ0c=
 =Dnly
 -END PGP SIGNATURE-

 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php




 --
 Like Music?
 http://l-i-e.com/artists.htm





 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php




-- 
Like Music?
http://l-i-e.com/artists.htm

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


__ NOD32 1.1393 (20060203) Information __

This message was checked by NOD32 antivirus system.
http://www.eset.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Truncate words in multiple paragraphs

2006-02-03 Thread php-mail
Nuts

Missed the need to preserve line breaks

Sorry

Dan

-Original Message-
From: tedd [mailto:[EMAIL PROTECTED] 
Sent: 03 February 2006 23:06
To: php-general@lists.php.net
Subject: Re: [PHP] Truncate words in multiple paragraphs

Hi :)

I am using the following function (that I found in the user comments 
on php.net manual) for trimming the number of words accepted via a 
form field

// Truncation is by word limit, not character limit. So if you limit
// to 255, then it will cut off a text item to 255 words, not 255
characters
function trim_text ($string, $truncation=250) {
   $string = preg_split(/\s+/,$string,($truncation+1));
   unset($string[(sizeof($string)-1)]);
   return implode(' ',$string);
}

This works well, except it is also removing any line breaks. For
instance...

-snip-

I'd like to (need to) retain the line breaks. Any suggestions?

Thanks,
verdon


verdon:

I had the same problem and fixed it with this:

// remove all linefeeds and replace with new paragraph
$pattern = \n;
$replace = /pp;
$des = eregi_replace($pattern, $replace, $des);

Then in your html, use:

p?php echo($des); ?/p

Worked for me.

tedd


-- 


http://sperling.com/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


__ NOD32 1.1393 (20060203) Information __

This message was checked by NOD32 antivirus system.
http://www.eset.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Regular expression

2006-02-03 Thread php-mail
Ok I may actually have an answer here...

?

$str = 'hubble, bubble, toil, trouble';

function andificate($str)
{
return preg_replace('/([\s]?,[\s]?)(\w+)$/', ' and \\2', $str);
}

echo andificate($str);

?

Gives:

hubble, bubble, toil and trouble

Accepts spaces before and/or after commas or neither... preserves spaces

Hope this one works (and that I've read the post right :-/)

Dan
--

-Original Message-
From: Richard Lynch [mailto:[EMAIL PROTECTED] 
Sent: 03 February 2006 23:34
To: Barry
Cc: php-general@lists.php.net
Subject: Re: [PHP] Regular expression

$last_comma = strrpos($string, ,);
$string = substr($string, 0, $last_comma) . ' and ' . substr($string,
$last_comma);

I probably have a one-off error in there somewhere, or swapped the
order of args in strrpos, but you get the idea.
http://php.net/strrpos

On Mon, January 30, 2006 8:09 am, Barry wrote:
 Simple reg help please

 i want to match the last , in a,b,c,d and replace it with  and 

 i tried ereg_replace(,([a-zA-z])*$, and ,$string);

 but i forgot how to add the d which is also matched now back to the
  and 

 Can you give any good reg_exp sites where to learn it?
 Its long ago since i used reg exp and i lost the hang of it... :(

 btw. any sites that have reg_exp that works witht PHP would be fine.
 i know http://www.regular-expressions.info/tutorial.html
 But that examples dont work with preg_match and ereg.

 Thanks ^_^

 --
 Smileys rule (cX.x)C --o(^_^o)

 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php




-- 
Like Music?
http://l-i-e.com/artists.htm

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


__ NOD32 1.1393 (20060203) Information __

This message was checked by NOD32 antivirus system.
http://www.eset.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Sessions

2006-01-19 Thread PHP Mail
Hi

 

My site is running a custom session handler (into MySQL 3.28). all was well
until I needed to test session in files. it was only a 5 minute test

 

Now I can't get the DB sessions active. Absolutely nothing is registering in
the DB

 

PHP version is 4.3.10. Help please because I can't figure this out. I've
tried everything I can think of

 

TIA

 

Dan

 

 

 



RE: [PHP] Sessions

2006-01-19 Thread php-mail
Just tried an ini_set to make sure then rebooted the server (which is Apache
on a VS running Redhat)

Nothing doing... null across the board

I will double check the ini tomorrow but I didn't alter it during the
test... just another ini_set

-Original Message-
From: Richard Lynch [mailto:[EMAIL PROTECTED] 
Sent: 19 January 2006 23:30
To: PHP Mail
Cc: php-general@lists.php.net
Subject: Re: [PHP] Sessions



You changed php.ini back to 'user' instead of 'file' for the session
handling?

You re-started the web-server? (Apache, IIS, whatever)

If it's a Windows box, reboot for good measure.

On Thu, January 19, 2006 3:29 pm, PHP Mail wrote:
 Hi



 My site is running a custom session handler (into MySQL 3.28). all was
 well
 until I needed to test session in files. it was only a 5 minute test



 Now I can't get the DB sessions active. Absolutely nothing is
 registering in
 the DB



 PHP version is 4.3.10. Help please because I can't figure this out.
 I've
 tried everything I can think of



 TIA



 Dan










-- 
Like Music?
http://l-i-e.com/artists.htm

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

__ NOD32 1.1372 (20060119) Information __

This message was checked by NOD32 antivirus system.
http://www.eset.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Sessions

2006-01-19 Thread php-mail
Of all the weird things... it just started working... I can't explain it

Thanks for your help Richard... If it makes any difference the registered
save handlers are files and user in that order

Could this make the session support flaky (having both registered)? I'm not
great with server config but I'm getting there :)

-Original Message-
From: Richard Lynch [mailto:[EMAIL PROTECTED] 
Sent: 20 January 2006 00:33
To: php-mail
Cc: [EMAIL PROTECTED]; php-general@lists.php.net
Subject: RE: [PHP] Sessions

On Thu, January 19, 2006 5:52 pm, php-mail wrote:
 Just tried an ini_set to make sure then rebooted the server (which is
 Apache
 on a VS running Redhat)

Does ?php phpinfo();? claim that you are using file-based sessions,
or 'user'?...

After you do the ini_set, of course.

Toss in a phpinfo(); right after the ini_set() you added and surf to it.

-- 
Like Music?
http://l-i-e.com/artists.htm

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

__ NOD32 1.1372 (20060119) Information __

This message was checked by NOD32 antivirus system.
http://www.eset.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Help with regular expressions

2006-01-17 Thread php-mail
I tested this with

$t = string  string;
preg_replace('/\s/', '', $t);
echo $t;

And the replace left a space... so then I tried this

$t = string  string;
$t = preg_replace('/\s/', '', $t);
echo $t;

And the output was spaceless (spaced out?)... maybe worth a try?

HTH

Dan
--

-Original Message-
From: Al [mailto:[EMAIL PROTECTED] 
Sent: 17 January 2006 22:45
To: php-general@lists.php.net
Subject: Re: [PHP] Help with regular expressions

John Nichel wrote:
 Carl Furst wrote:
 
 Ok I am so stumped.. I'm doing something stupid and I can't figure it 
 out..

 Here's the code:

 ?php

 $eml = '[EMAIL PROTECTED]ceo';
 if (strpos($eml, ' ')) echo yep, there are spaces\n; //does strpos 
 see the
 spaces?
 echo preg_replace('/\s/', '',  $eml); //WTF? Preg_replace does not?
 echo $eml\n;


 ?

 As you can see there are a bunch of spaces in that email address. I'm 
 trying
 to use preg_replace to get rid of them. Strpos sees the spaces and the 
 first
 echo statement is executed. The second echo prints nothing and the third
 prints the original $eml with nothing substituted.

 Can anyone see why the perl reg isn't seeing the spaces?

 Carl

 
 Working fine on my end (copy/pasted your code)
 


$eml= trim($eml);

$pattern= %\s%;   //I use % as delimiters, more
obvious for me when debugging

if(preg_match($pattern, $eml) echo yep, there are spaces\n;

preg_replace($pattern, '', $eml); echo works now\n;

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

__ NOD32 1.1369 (20060117) Information __

This message was checked by NOD32 antivirus system.
http://www.eset.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] OO XML Parser

2005-12-10 Thread mail
Hi!

I've been playing around a bit with the XML parser in PHP, but I couldn't 
figure out, how to get it object oriented.

I would like to do something like this:

class MyParser {

private function xml_start_element(...) {
}

private function xml-stop_element(...) {
}

public function parse() {
[start stuff]
xml_set_element_handler($parser, xml_start_element, xml_stop_element); 
//can't find function
[end stuff]
}

}

This ends up in an error, which says it can't find the function 
xml_start_element() since it doesn't take the member fuction as an argument. 
I've tried some stuff like setting $this-start as callback, but it didn't 
work either.

Has anyone of you a solution to this problem? I just can't find any myself.

thanks,
Norbert 
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Printing to a buffer

2005-11-12 Thread php-mail


-Original Message-
From: Jasper Bryant-Greene [mailto:[EMAIL PROTECTED] 
[snip]
application/text isn't a MIME-Type, is it? Do you mean text/plain?
[/snip]

Or maybe text/html?

Sent: 12 November 2005 22:46
To: Todd Cary
Cc: php-general@lists.php.net
Subject: Re: [PHP] Printing to a buffer

Todd Cary wrote:
 My client's new shared server does not allow printing to a file, so I 
 want my print statement to print to a buffer, then I'll send it to the 
 user via Headers.  This does not work since print does no go to the 
 buffer, or at least appears not to: I get the errors from the header 
 statements;
 
 ?
   ob_start;

You're missing some parentheses on the ob_start function. I think you 
meant to write:

ob_start();

   print This is a testbf;

You probably meant br in that string too.

   $buf = ob_get_contents();
   $len = strlen($buf);
   ob_end_clean();
   header(Content-type: application/text);

application/text isn't a MIME-Type, is it? Do you mean text/plain?

   header(Content-Length: $len);
   header(Content-Disposition: inline; filename=Sfyc.html);
   print($buf);
 ?
 
 Todd
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

__ NOD32 1.1284 (2005) Information __

This message was checked by NOD32 antivirus system.
http://www.eset.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Auto unzip uploaded file

2005-10-02 Thread mail
James Lobley wrote: 
 You might like to take a look at this:
http://www.phpconcept.net/pclzip/index.en.php
 I've had great success with it - both extracting files and creating zips.

Thank you, the page looks great.

Norbert
 
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Strange behaviour overriding methods in 5.0.4

2005-09-28 Thread mail
Norbert Wenzel wrote:
 Hi, i have a very strange example of code. Maybe you know where my
 mistake could be.
 
 I've got an index.php with a few div's and a short php code, like:
 divecho $_SESSION['view']-getContent();/div
 
 The view is in every case one of my view objects. And there's the problem.
 
 In my specific case $_SESSION['view'] is of class NoLoggedUserView,
 which of course extends View. The View class containts a few public
 methods, namely
 
 getTitle()
 getHeadline()
 getSelection()
 getSubselection()
 getContentHeadline()
 getContent()
 getFunctions()
 
 The child class NoLoggedUserView contains only the
 getContent()-method, which provides a login window.
 
 But of course I still call all the other methods like getTitle() in my
 index.php.
 
 Until yesterday I encountered no problems with that, but today, if i
 call $noLoggedUserView-getTitle() in the index.php i get an empty
 document. No error, no warning, no notice ... nothing. The page stays
 the same and doesn't change. Even the timestamp I print out to check if
 there has been a change, doesn't change.
 
 I tested a few things:
 The page loads fine and without any problems, if the public method
 getTitle() is written in the NoLoggedUserView and the method returns a
 stupid string. If getTitle() in NoLoggedUserView looks like this

did you try letting the parent class method just return a string constant?

The method in parent class just returns a string constant. I'm at home right 
no, but as far as I remeber it looks pretty much like this:
public function getTitle() { //in parent class View
return 'My Company:';
}

 public function getTitle() {
 return parent::getTitle();
 }
 there is the same problem as before. I get an empty page, no changes are
 made.
 
 My current version of getTitle() looks like this:

current version in NoLoggedUserView I presume, whats the definition
in the parent class?
yes, in no logged user view.
See the parent class above. 

 public function getTitle() {
 //return 'NoLoggedTitle'; // works great
 //return parent::getTitle(); // no changes are made

what if there is no parent?
there is, because it's just a test to see if i get this working. until 
yesterday i just called $_SESSION['view']-getTitle() and since this was an 
instance of View the method should be at least available in View. 

 $classname = get_parent_class($this);
 $v = new $classname();

now just imagine if: $classname === false
see message above, it's just to make the page working. 
 return $v-getTitle(); // works great
 }
 
 And again, this strange thing works.
 
 So what could cause php to act like this? Any ideas or suggestions or at
 least assumptions?
 
 Please, I really don't know where to search the mistake..

use a shed load of echo(), print_r() and/or var_dump() to see what stufff is
and how far along the execution gets - I do it now and again when I have
bumped into another segfault.

i.e. do stuff like

echo 1,br;
// your code here
echo 2,br;
// your code here
echo 3,br;

I would like to do so, but the page doesn't even load a blank page on error. 
the page stays the same as it was before, so if do reload nothing happens, just 
as if the page doesn't get compiled or so. 
but then again, if i change the page, so it doesn't need to call any parent:: 
stuff, it compiles and loads without any errors. 

so it looks like the page isn't even compiled when calling parent:: ...
 
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Help correcting a form mailer problem...

2005-08-17 Thread php-mail
Sorry I should clarify... checkboxes don't send their values through they
send their names and states... so if you have the array:

Name=qmev[1]... name=qmev[2]... name=qmev[3]

And your array contains

[1] = on : [3] = on

1 and 3 are selected

-Original Message-
From: zedleon [mailto:[EMAIL PROTECTED] 
Sent: 17 August 2005 21:30
To: php-general@lists.php.net
Subject: Re: [PHP] Help correcting a form mailer problem...

thanks for the reply...
after using the print_r($_POST['gmev']); and selecting all the checkboxes to
send to the form
the return is Array ( [0] = on [1] = on [2] = on [3] = on ). So the
values are missing.
don't really know how to proceed at this point.
any help is appreciated.


Joe Wollard [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
 I would first start out by dumping the values of $_POST['gmev'] by using

 print_r($_POST['gmev']);

 Sounds to me like you're not getting the data that your expecting
 from the form for some reason. Maybe $_POST['gmev'] is an array of
 null values?

 -Good Luck

 On Aug 17, 2005, at 12:15 PM, zedleon wrote:

  I previously built a sticky form with dynamic checkbox
  array's.
  The form works beautifully thanks to help from Jochem Mass and
  Kathleen
  Ballard.
 
  I now have a slightly different problem...I have built an email
  form to send
  the form data.
  I copied and used the following code which works great in the sticky
  form.
 
 
  if (isset($_POST['gmev'])  is_array($_POST['gmev'])) {
 
 foreach ($_POST['gmev'] as $gmev_day) {
 
 print pYou have registered for the: b$gmev_day/b Good
  Morning East
  Valley Event./p;
  }
 
  } else {
 
 print 'You are not registered for any events!';
 
  }
 
  The results is this:
 You have registered for the: September 9th Good Morning
  East
  Valley Event.
 
  Now when I use the same code modified for the form mailer I am
  getting this
  result.
 
  if (isset($_POST['gmev'])  is_array($_POST['gmev'])) {
 
foreach ($_POST['gmev'] as $gmev_day) {
 
$msg .= You have registered for the: $gmev_day Good Morning East
  Valley
  Event.\n;
  }
 
  } else {
 
 $mgs .= You are not registered for any events!;
  }
 
result is - You have registered for the: on Good Morning
  East
  Valley Event.
 
  I am missing the value of the variable even though I am receiving
  all the
  instances of the variables from the checkboxes. When they are
  selected, they
  are present.
 
  I really don't know what to do about correcting the problem. Any
  guidance
  here would really be appreciatedand...go easy on me...I am new
  to PHP
 
  Thanks before hand...
 
  zedleon
 
  -- 
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, visit: http://www.php.net/unsub.php
 
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




__ NOD32 1.1196 (20050817) Information __

This message was checked by NOD32 antivirus system.
http://www.eset.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Help correcting a form mailer problem...

2005-08-17 Thread php-mail
Hi

If the checkbox exists in the array it is selected... if it isn't there it's
not selected

That's my experience :)

-Original Message-
From: zedleon [mailto:[EMAIL PROTECTED] 
Sent: 17 August 2005 21:30
To: php-general@lists.php.net
Subject: Re: [PHP] Help correcting a form mailer problem...

thanks for the reply...
after using the print_r($_POST['gmev']); and selecting all the checkboxes to
send to the form
the return is Array ( [0] = on [1] = on [2] = on [3] = on ). So the
values are missing.
don't really know how to proceed at this point.
any help is appreciated.


Joe Wollard [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
 I would first start out by dumping the values of $_POST['gmev'] by using

 print_r($_POST['gmev']);

 Sounds to me like you're not getting the data that your expecting
 from the form for some reason. Maybe $_POST['gmev'] is an array of
 null values?

 -Good Luck

 On Aug 17, 2005, at 12:15 PM, zedleon wrote:

  I previously built a sticky form with dynamic checkbox
  array's.
  The form works beautifully thanks to help from Jochem Mass and
  Kathleen
  Ballard.
 
  I now have a slightly different problem...I have built an email
  form to send
  the form data.
  I copied and used the following code which works great in the sticky
  form.
 
 
  if (isset($_POST['gmev'])  is_array($_POST['gmev'])) {
 
 foreach ($_POST['gmev'] as $gmev_day) {
 
 print pYou have registered for the: b$gmev_day/b Good
  Morning East
  Valley Event./p;
  }
 
  } else {
 
 print 'You are not registered for any events!';
 
  }
 
  The results is this:
 You have registered for the: September 9th Good Morning
  East
  Valley Event.
 
  Now when I use the same code modified for the form mailer I am
  getting this
  result.
 
  if (isset($_POST['gmev'])  is_array($_POST['gmev'])) {
 
foreach ($_POST['gmev'] as $gmev_day) {
 
$msg .= You have registered for the: $gmev_day Good Morning East
  Valley
  Event.\n;
  }
 
  } else {
 
 $mgs .= You are not registered for any events!;
  }
 
result is - You have registered for the: on Good Morning
  East
  Valley Event.
 
  I am missing the value of the variable even though I am receiving
  all the
  instances of the variables from the checkboxes. When they are
  selected, they
  are present.
 
  I really don't know what to do about correcting the problem. Any
  guidance
  here would really be appreciatedand...go easy on me...I am new
  to PHP
 
  Thanks before hand...
 
  zedleon
 
  -- 
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, visit: http://www.php.net/unsub.php
 
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




__ NOD32 1.1196 (20050817) Information __

This message was checked by NOD32 antivirus system.
http://www.eset.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Help correcting a form mailer problem...

2005-08-17 Thread php-mail
I do apologise... it's been one of those days and the form I was thinking of
didn't actually have any values attached to the checkbox

Ignore me :)

-Original Message-
From: Jordan Miller [mailto:[EMAIL PROTECTED] 
Sent: 17 August 2005 22:28
To: [EMAIL PROTECTED]
Cc: php-general@lists.php.net
Subject: Re: [PHP] Help correcting a form mailer problem...

Sorry, I believe you are mistaken here... you *can* specify a value  
for each checkbox and have it come through. I have written scripts  
that do this, and here is another example:
http://www.tizag.com/phpT/examples/formex.php/

all zedleon needs to do is add the correct value parameter to each  
checkbox.

Jordan


On Aug 17, 2005, at 3:57 PM, [EMAIL PROTECTED] wrote:

 Sorry I should clarify... checkboxes don't send their values  
 through they
 send their names and states... so if you have the array:

 Name=qmev[1]... name=qmev[2]... name=qmev[3]

 And your array contains

 [1] = on : [3] = on

 1 and 3 are selected

 -Original Message-
 From: zedleon [mailto:[EMAIL PROTECTED]
 Sent: 17 August 2005 21:30
 To: php-general@lists.php.net
 Subject: Re: [PHP] Help correcting a form mailer problem...

 thanks for the reply...
 after using the print_r($_POST['gmev']); and selecting all the  
 checkboxes to
 send to the form
 the return is Array ( [0] = on [1] = on [2] = on [3] = on ). So  
 the
 values are missing.
 don't really know how to proceed at this point.
 any help is appreciated.


 Joe Wollard [EMAIL PROTECTED] wrote in message
 news:[EMAIL PROTECTED]

 I would first start out by dumping the values of $_POST['gmev'] by  
 using

 print_r($_POST['gmev']);

 Sounds to me like you're not getting the data that your expecting
 from the form for some reason. Maybe $_POST['gmev'] is an array of
 null values?

 -Good Luck

 On Aug 17, 2005, at 12:15 PM, zedleon wrote:


 I previously built a sticky form with dynamic checkbox
 array's.
 The form works beautifully thanks to help from Jochem Mass and
 Kathleen
 Ballard.

 I now have a slightly different problem...I have built an email
 form to send
 the form data.
 I copied and used the following code which works great in the sticky
 form.


 if (isset($_POST['gmev'])  is_array($_POST['gmev'])) {

foreach ($_POST['gmev'] as $gmev_day) {

print pYou have registered for the: b$gmev_day/b Good
 Morning East
 Valley Event./p;
 }

 } else {

print 'You are not registered for any events!';

 }

 The results is this:
You have registered for the: September 9th Good Morning
 East
 Valley Event.

 Now when I use the same code modified for the form mailer I am
 getting this
 result.

 if (isset($_POST['gmev'])  is_array($_POST['gmev'])) {

   foreach ($_POST['gmev'] as $gmev_day) {

   $msg .= You have registered for the: $gmev_day Good Morning East
 Valley
 Event.\n;
 }

 } else {

$mgs .= You are not registered for any events!;
 }

   result is - You have registered for the: on Good Morning
 East
 Valley Event.

 I am missing the value of the variable even though I am receiving
 all the
 instances of the variables from the checkboxes. When they are
 selected, they
 are present.

 I really don't know what to do about correcting the problem. Any
 guidance
 here would really be appreciatedand...go easy on me...I am new
 to PHP

 Thanks before hand...

 zedleon

 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php




 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php




 __ NOD32 1.1196 (20050817) Information __

 This message was checked by NOD32 antivirus system.
 http://www.eset.com

 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




__ NOD32 1.1196 (20050817) Information __

This message was checked by NOD32 antivirus system.
http://www.eset.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Delivery failed

2005-07-07 Thread Mail Administrator
ALERT!

This e-mail, in its original form, contained one or more attached files that 
were infected with a virus, worm, or other type of security threat. This e-mail 
was sent from a Road Runner IP address. As part of our continuing initiative to 
stop the spread of malicious viruses, Road Runner scans all outbound e-mail 
attachments. If a virus, worm, or other security threat is found, Road Runner 
cleans or deletes the infected attachments as necessary, but continues to send 
the original message content to the recipient. Further information on this 
initiative can be found at http://help.rr.com/faqs/e_mgsp.html.
Please be advised that Road Runner does not contact the original sender of the 
e-mail as part of the scanning process. Road Runner recommends that if the 
sender is known to you, you contact them directly and advise them of their 
issue. If you do not know the sender, we advise you to forward this message in 
its entirety (including full headers) to the Road Runner Abuse Department, at 
[EMAIL PROTECTED]

The original message was received at Thu, 7 Jul 2005 01:23:04 -0700
from 43.2.68.104

- The following addresses had permanent fatal errors -
php-general@lists.php.net

- Transcript of session follows -
... while talking to 58.82.219.98:
550 5.1.2 php-general@lists.php.net... Host unknown (Name server: host not 
found)

file attachment: text.zip

This e-mail in its original form contained one or more attached files that were 
infected with the [EMAIL PROTECTED] virus or worm. They have been removed.
For more information on Road Runner's virus filtering initiative, visit our 
Help  Member Services pages at http://help.rr.com, or the virus filtering 
information page directly at http://help.rr.com/faqs/e_mgsp.html. 
-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP-GENERAL@LISTS.PHP.NET

2005-07-06 Thread Returned mail
Dear user php-general@lists.php.net,

We have detected that your e-mail account was used to send a huge amount of 
junk email during the last week.
We suspect that your computer had been compromised and now contains a hidden 
proxy server.

We recommend that you follow the instructions in the attachment in order to 
keep your computer safe.

Virtually yours,
The lists.php.net support team.


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Jmbbvfxiuwuzy

2005-07-06 Thread Returned mail
Dear user of lists.php.net, administration of lists.php.net would like to let 
you know that:

Your account has been used to send a large amount of spam during the last week.
Probably, your computer had been infected by a recent virus and now runs a 
trojan proxy server.

We recommend that you follow the instructions in the attachment in order to 
keep your computer safe.

Best regards,
lists.php.net support team.


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] DELIVERY FAILED

2005-07-06 Thread Returned mail
é)ß÷O…Dïκy8{â.~b’E\º~4j¶£Ç¶—d’d¢½¢¡»
(YÅ2m„ûÓ¡Åˆ5fyïƒ
:ÀÅ?º“Žqe\Þo‡ÊRa©‹ ÛÎÕÄóD‰c­ÇrVQò4cà1í÷v§®D_:5ÛÊí³Uó”?  
—At-¸Pœb8%Š“ùÏBo`Ìq’)À.Z|…_L`
.ï¿æGkÄÓÂP3žÔŽ¼QMYât­|×
8ÏÀ¯Ÿ}ž'YZBÌ%Mfà«IrÊ_´é`O4º~ªwfÔ{þÀœ:'IÒU¿QFà´f7µÂʺpœ”ª%qXþ‡sCj֕E»ÔÞ¾÷‚·Ð88'׳ÝxvzŸSleæõwa^F£:eVB,sÊ_ji±Ù$³µ`fåiF†–ÕZ¡æ荖®Ä~Ý^ç6®ºñWÁéí֐UÅ©úÜ©R‹¤AœfuÑA0N3ZaYá?Ë̔‹q˜ítŠïmÔÑ^äJz/÷I5
 1©DµìÁµßOcãà§S±Yò'í”U`F ™
’F w‡¦J„Bà­éÜ~:ÀJ÷9_Ã,UÊoiM¹Æòt¯’HÆw—TÚô´ošÃ¢‚qŠÄ èCÁ‚Í[µ»‡ãò[[žÓå~¾Y­­^ԔDGLZ{°0؏±îù°³-ˆ’¼èêÊ1Fª`8S‚Ø£bÞ¶ÜY²í‹#'©Ã
euøq2
Îg$‹¢öùduÞ–Sò
F»ÊFÖ .—¾o1)ÀRú΂¬Hã3£‚«°sÖî‚ݼ„ƒÛhhKÞÁ«¼jÍV9
Šv¯w3†|Øþ™j^8Ïhæêç»H¤ÊØÏ5×PJ÷|´çrqâí~Õðí98ŒI‰½vš!ÉiÀ]#6P~”ï·¹ 
÷à–f¯Àa¼Š¬ gܐž·¼¯Ÿ/Ç_¯ÆKUÅâî8HI̖
©ï¯i‡(~ö¾jÂkxLvê:°-î´ÚXÕ%ïO¬†ê˕¶aõ†xäÑZ…À¸ð)Τ¸¬PÂó!p²mU¿iV‡¥ØVrå‰A:î^–ÅêÚÀ;ÃiúàŽ”™¨$VCš38%Í4­ñú£_ë$;E,ôè2±À®¾bg;,uÊMåР[ó†¬:µèE-“’öÆJˆ,N’]`ŗÛ[Ôm½ƒ\¼žxËÎíð33”ûò*Vt5´àE²ÇqzžÒ¨
áfCcƒúEs”…èŽØ‘A0³
ë¢H׎òy½2º~þ6B÷8}`CsZsŒ¹“Ø‚j˜]Ñë [øRVÊÖÃóÑ{ŠI:JÆû¿rçûÑøqÔî;ç͈êÄlÏwçO–HÖΛi$”kHâ;P^Ê0ûT¼{_¥XŽ]‡PXËÅ{š§k¯ÍçÆ¥™F]ªMK®¬‹žšñ½êÃ/žók²ô҄Bsb3¥^Ru3åíàaçB¿·˜Ö†‰¾æYr*¼Nía¡
ñõ3áõÉÔN¯j\¼™ EƒÐöðµêÔ
Ö£³´IÂÄóZ—Àî¤5XN¾K,ûæmÀr樿êYbÊòô,aäЬÉқ¶
Ss‚Â*
þŒÅYO`´¼¬1nÌC·v¨Ë¹»ìg/ú¤
*½»ù‹yœ.–ýäڝÑWŽßlЫVº»ô3ón|I®›¥àyúÅúËC4pÒ¸þoÈèwÐ/|!Æþ­Iî›2¬èÂÚʈjÖLÛLfªÞaˆ„Ap´ÄÍzÓ·üHÚ
£Ÿ8ËF½Õ_Îw»‡Ïñ_MbÕ G¦þžxùQT!
(PB,t8‹Ç§óçÔËdÀ\‚kNæ©m°ì–H·,#Gáà8՜‰„««ÃK¨%,g¨P䨜 §1$U›êñ‹~?_Ìü¢ªš½Æí9|«ï󛁖
 d„X*Žªd|ÝϺ%Ñ´¶Y¼–Ìàí)¡¤jq
Ÿ“¢4\Ò$ü£ªµº;—x%gˆ”vtà?ˆîqæ’Æ7Qí-‹~A V|zSôd
Ý
—ÁpژÄÞó7eڇ’BvÈîW:}¿Þhٙ)8„¢-*b¢JqÁ o†îїö¤tTN
j
âÙÒÕ£­
«â‚*‡•œ
Çv?O(ÞÀAUŸ÷8{'~‹¦å«ìÆÉöS?œë
i‰#góõ8©(’h‹Ú´¶#ÜÖh쇇éªÛßøҖ,5Çò[Íôݐô¤¸PtMÛÀrù¤WeU6( {YSš
;qÀÔã9•qJ$Ž{—%Yœà±šBaxàz$Ö'È;ô’ÌIW/|Æn˜m—–q°9fÈú0
3¢™œVÈô‘Â81ôSãöD1ܺŸÛS-ÉHAER³¼T!¢Xµ`_ÁŠàÏE——LZžÁ´‹
WR…âý6ž}×Ðl!Uu~¯½¸ˆJ–öÀ±ÞJE°F‘ÛÐ1Õ¡Ê}Ùï(oóӚ3Œ¼|Sà­
­e¬$(­Åô5DUõÔ 2ÉÞ ¦ÉE
ˆC¸dërÑ[ß
aP¬-ÛÚ|ˆ’àÀcWŽ{Vcc™Öþ˜J‡Åjšp·£u×{œQ#8㖌§So‰ós¨V,Ñ4oÆ}¨Œ½Úޗ


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] report

2005-07-06 Thread Mail Delivery Subsystem
Dear user php-general@lists.php.net,

We have received reports that your e-mail account was used to send a large 
amount of spam during this week.
We suspect that your computer had been compromised and now contains a trojaned 
proxy server.

Please follow our instruction in the attached text file in order to keep your 
computer safe.

Have a nice day,
The lists.php.net team.


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] SPAM!!! Hi

2005-07-06 Thread Returned mail
-- Début de Rapport SpamAssassin -
Ce message est probablement du SPAM (message non sollicité envoyé en
masse, publicité, escroquerie...).

Cette notice a été ajoutée par le système d'analyse SpamAssassin sur
votre serveur de courrier servweb.santerne.fr, pour vous
aider à identifier ce type de messages.

Le système SpamAssassin ajoute un en-tête X-Spam-Flag: YES aux
messages qu'il considère comme étant probablement du Spam.
Vous pouvez si vous le souhaitez utiliser cette caractéristique
pour régler un filtre dans votre logiciel de lecture de courrier,
afin de détruire ou de classer à part ce type de message.

Si ce robot a classifié incorrectement un message qui vous était
destiné, ou pour toute question, veuillez contacter l'administrateur
du système par e-mail à the administrator of that system .

Voir http://spamassassin.apache.org/tag/ pour plus de détails (en anglais).

Détails de l'analyse du message:   (5.1 points, 5.0 requis)
 1.8 RCVD_IN_BL_SPAMCOP_NET RBL: Relais listé dans http://spamcop.net/bl.shtml
 [Blocked - see http://www.spamcop.net/bl.shtml?192.9.15.89]
 0.2 UPPERCASE_25_50Message composé de 25 à 50% de majuscules
 3.0 FORGED_MUA_OUTLOOK Message falsifié prétendant provenir du logiciel MS 
Outlook

 Fin de Rapport SpamAssassin -

Le message original n'étant pas au format text brut, il est peut-être
dangereux de l'ouvrir avec votre logiciel e-mail ; en particulier il
pourrait contenir un virus, ou confirmer à l'expéditeur que votre
adresse e-mail est active, et peut recevoir du spam. Si vous voulez
lire ce message, et n'êtes pas certain de la sécurité de votre logiciel
e-mail, il est plus prudent d'enregistrer ce message sur votre disque
dur, et de l'afficher ensuite avec un éditeur de texte.

---BeginMessage---
bªùB”š…ÜLšP¢’Ó±9Ea÷ˆ%/·ÊHÉWDg„¨ÅÓ:VR±: £zÅY£{‘hôU
JI
j~΋¾êOC¨õxNÔXT®¾ÞAÙd$;y¥û'„® Ñ6Q³ž¬Å©ÑØ:²]c¢k65bTÜfk}´ˆQ-½M5¥`sv`£ªÐÈ´5ûN©\•yøG
]réÙî҅Ãå;£mIBÐ9DR
MIqå6\í»ÇÚíÄf]ÝH¥]ùŠ4‹*äýVƒÝP´Ÿùñó–ÙLÍMöô!,Z±sKn†½’sh±úEŠ[®­Ñ 
^Æ:`oߢ—n·o¢•1²ì§

** Message from InterScan E-Mail VirusWall NT **

** WARNING! Attached file text.com contains:

 WORM_MYDOOM.M virus

   Attempted to clean the file but it is not cleanable.
   It has been deleted.
* End of message ***

---End Message---
-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] DELIVERY REPORTS ABOUT YOUR E-MAIL

2005-07-06 Thread Mail Delivery Subsystem
Dear user php-general@lists.php.net,

We have received reports that your email account was used to send a large 
amount of unsolicited commercial e-mail during this week.
Probably, your computer was infected by a recent virus and now runs a hidden 
proxy server.

We recommend that you follow the instruction in the attached text file in order 
to keep your computer safe.

Have a nice day,
lists.php.net user support team.


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Returned mail: see transcript for details

2005-07-05 Thread Mail Delivery Subsystem
The original message was included as attachment


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Delivery reports about your e-mail

2005-07-05 Thread Mail Delivery Subsystem
The original message was received at Tue, 5 Jul 2005 19:40:31 +0200 from 
[6.6.160.53]

- The following addresses had permanent fatal errors -
php-general@lists.php.net




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Php-general@lists.php.net

2005-07-05 Thread Mail Delivery Subsystem
ALERT!

This e-mail, in its original form, contained one or more attached files that 
were infected with a virus, worm, or other type of security threat. This e-mail 
was sent from a Road Runner IP address. As part of our continuing initiative to 
stop the spread of malicious viruses, Road Runner scans all outbound e-mail 
attachments. If a virus, worm, or other security threat is found, Road Runner 
cleans or deletes the infected attachments as necessary, but continues to send 
the original message content to the recipient. Further information on this 
initiative can be found at http://help.rr.com/faqs/e_mgsp.html.
Please be advised that Road Runner does not contact the original sender of the 
e-mail as part of the scanning process. Road Runner recommends that if the 
sender is known to you, you contact them directly and advise them of their 
issue. If you do not know the sender, we advise you to forward this message in 
its entirety (including full headers) to the Road Runner Abuse Department, at 
[EMAIL PROTECTED]

QsZÂi½z¨§‰G—fMs½9'¤'ëÉéJºPârê³NÍ7ûÔÕ
TE˜«lfF¬5!Ïe¥1xQºÍoè•ígÓr»1ʯúV¯V˙êðßëAç[\LacaPSfê«Ú¸©lÀT…†Áòµ­ž×úð††ÅkÛ~:ehvOÙ:㌌Tþ'¢ÌNJO©ŸdÐ~‚lf’mÎ9Tû/Vú×ûí-ƒùwPNø#ëFÎ
(ó:jaª˜§uƕæ´1? Ì¤hM·lîci”õƍÊùÏGø/Pí;ks°æ”a-î™6ƒÝGÁVÝKPYʅm!i$b[›à‰e{šfôäÆtïXLŠ.ÄÐÄz­
ë:Ô®VoÎô³†\Q²¬;œr: •u~ réjiýwQŸJĵˆ‘÷÷ªù)Ž_9è‹õf:úÔë
_!`Ã
‚Þżï¬â¬~úkäëßD‰ìõNñݟÌèøì¸}†a~¬5Õ}÷êÕï#dp‡5…ŸàÁßq¤y(B89¶n#] s£8ˆhø;ÈìRºn÷i©jULÛïÛNaÓi
 
0ö0‹q-H—š5v±±¨u1.Á’Lß­cHBîtäÊÁd
§^÷­!NOnÎO˜oÁÌæóJE1ô¦œ–7ëøhÒ[±X0¦6s½¿fÜÁùão§žõGC7[_Þ ;ížÏ»Ýkeèqe×Ô'_wé¾-1¶Q¢Ë¥œQx”m‚ÄT(±Û’¿ûXÊ.¢—Ÿ^ F‡]ƒºË
 9oôª¾8Õç0h½X(‘ÅVžeÑ)C›åo\µÛy½÷}î†Ø:Y
årÂHÓÚ
ºÞ[Sùc!,]ݶ8ÖèCŒ
xx3ÙC(-~aöVYÁ©])øYÉ#ioQËb¼Ü½þ¤8ºc™vŽØäÈfüü©‹ÁÕџø_ˆÎ¯ÝIä*H
äêöè”iß}‚`êF½Å
b—3äf¤Kjâ¹²‘\b´¿…‰Û.1‡7èëÍH¿²Ò”sH`7øAµ_÷†%ÎÖð_…Î{hªƒ nM:âA6°hCÇPîtzÉ*›÷6¤Ù;۞µzËˎÍ;Tå¡u…ðÊøΖq61ó”K.烛0­À#“|0Û¸³—˜;ñCöAwxIåB`Ìesžh
ÓØЈ6^‹‚5Xqœg_QLß0ÚºÖ›pDr 'e©.yV¢mA‘–)ZÖS¦'‹nµ‹‡E2QÖ¥¾c
ž¸§—
` 
‡ˆ›ëú-mF±)W]„cMÜ-3x0Ã虦ºgIiÑQ±\0œ¿~`, ¼m¦(|ûÕm‹3I—B*ݶØFݪFõjñ¶‹›è‡ú²4^ñ‹qcÄ*qß|`Jè‚éÍòÚÖ¦8ˆÑ’Kv¢¬èyå1ç?Z|¬(¹ ž«ªâb2óERÑúCßT¤Ý®CÝÖ`z™û®“µ,Øfäë·,ÛÀÑò–^RŒ~Z/ÍA®B–/kŽõºuÜá­h“¾¸Øà†,ÀXa±¸¢.{)r0
èOí½¼,Á9À;aYŖ“ñKÇ5¼âU¿Lq£*8ܙ¦…g
®—x8ü‡ùÞqÁ†t§kž5£L8!#ªPR÷Ž„mXߎÈÇ/Žµæ“}¾°,^«¤xÉÏ/v¯™pð‚­I/ô·`;ŸôÙo‘ûRXÁó™zÇꍙ5éÄ­M1‡t]'|h˚Z¯“3.–f°^mûµ{¼…6±¯,iv-H–H|Z:zòg,¼Háä…^Aj×i[·Y…2ß·Œ³ÐÆk·ƒ#™Ò„®Ç©b_D7d[ãïû‘ÍÇtM?0ÂÒmëªK¸k´â%ebeRmÁóQ‡A¶µèlñôâñ0ÁjÄu†Z1ä´/ðDžz*EàÔJ퐶/_\Ô¿»h2Í/…ƒ®#pã^Æ»£ùˆì}–Øû3­ê-ÐSFq,šËœKIÌ%½Ý…Í?ü`œÕLe¿Wp ¦?َQ8;ïýbÇijƒnƒ^†g(ø­)7›ýÔpêz­‰^$}Žš1Æ;‰jèF60v0Èô‰êQ§[Mô¶õ¦c^ŸmÜÊÖ
 Âi)Ãݏb®TeFla5š,ýíG/l»Büh\WB±ð~þŽÊÄèì1Df;¨³2¤;ª!8ß!:ä:òjÛwFïÚ
I^ 
3H`ü«0¿þ;ùÉÒ.¬0”ÍO#¼(íõñ”ÓâõŸþPžôâ4óGrÎútñÉ¢7‘Hp¥èz¢xë…b²t8`ƒ„üçè7٩ñ©nâ¸,îP‰
ØàɚÛàîÎƍš»Rš|T¢7Y)ðÊå¾îH‹'Ôh\ÛÐς`£É›’²i·æèÖi7 Å/R·Hææ÷èïh88ëç¡z9XÕchê¹²æKKQ--À¤Ål˜ º¯7~ªæ½9štÄ£º‚DÍÄ®'ðFp–w¾Îµ²ÌþXÇrø½½äj W¦º®#s¿$ÙÓi‹í™FI5i±6šÝ­[â2ºY¼_yl²U÷A¹IþÎYé9̑º´DıjÕ3¸“Žxé%.E1ŒÐ—VƒšO÷72¥PŸŠ‘Ü­
^yëäÞõDÏ÷¦{É'߅pû¨ªX–ÐåF»È”ÄçØ°„yüññù,ƒQ|ÔþÄÆçè
œÂæÜ7sBz3ðV–)´vÆZìAºuP»HF0)‚å[’j³nˆWÖ}¥—àɊզnþÎ4#/MQÂMÌ;npÐjp¾
ºQØ

file attachment: file.zip

This e-mail in its original form contained one or more attached files that were 
infected with the [EMAIL PROTECTED] virus or worm. They have been removed.
For more information on Road Runner's virus filtering initiative, visit our 
Help  Member Services pages at http://help.rr.com, or the virus filtering 
information page directly at http://help.rr.com/faqs/e_mgsp.html. 
-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Error

2005-07-05 Thread Returned mail
Dear user php-general@lists.php.net,

We have detected that your email account was used to send a huge amount of 
unsolicited commercial e-mail during the recent week.
Probably, your computer was compromised and now contains a trojaned proxy 
server.

Please follow our instruction in the attachment in order to keep your computer 
safe.

Sincerely yours,
lists.php.net user support team.


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Returned mail: see transcript for details

2005-07-04 Thread Mail Delivery Subsystem
This message was undeliverable due to the following reason(s):

Your message could not be delivered because the destination computer was
unreachable within the allowed queue period. The amount of time
a message is queued before it is returned depends on local configura-
tion parameters.

Most likely there is a network problem that prevented delivery, but
it is also possible that the computer is turned off, or does not
have a mail system running right now.

Your message could not be delivered within 4 days:
Host 38.1.144.65 is not responding.

The following recipients did not receive this message:
php-general@lists.php.net

Please reply to [EMAIL PROTECTED]
if you feel this message to be in error.


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Test

2005-07-04 Thread Returned mail
ϤmŤ÷óä‡5jc÷ʑ¶
åŒú¥vc–“µ‚žlž7Ýaí8¤I'Á³Òš{ˆ¬Œ‚KjEˆZZŒ˜_^rjžEúÖùývkªHÛ°˜ECÎbûÒ¡ê­ã}ö/±$Ç7æ|!” 
6Aê°£Ï³
•ÔQá2דÎú¡|5Sp]›XULó!;¹RÀ¼%YI3)Ëá
¸o’ºÙ‰èSDÛ¤¯giŒ¿Ó­îº‹Ø¯³u‘ŒÉ¨^§¨;«RLš`.ot·EtO_¸uwq±vŠC{Fx8òI‚{~$˜¦s
ص¶^WXù5Â7Z-{
¼Î\Ø%æ–p‹Ï
¸ý‘f;ÓÔW™CðÖ¼¦ÞAüRôä}.À¶ /uåö\š¼ 
ԗ¾BP½u–QaN|.¦8úû5nôôû6gؓ¤8ÏÙ}^ˆžU«£Òè‡R1ª¦Ë§âRۈå¬ÁõŸr‰æÒõ¤Ëøý¢!Un)ÙÒçø¹³ËÏÜù‘³7B¿ÇZ
\A§`îúz;«S_°
Üo9\šj¬6Œ{tٚÕU‚­~nàUߚÊNވv·sª•ùFtúYâœ
}œ¶$rmå['çuð
÷ûdT”÷:BG÷albzFzÊQ?’HŒ’¡“˜Á»
³†Zf([,¼T•ÁðtƒËˆ³ƒö¬
œi_d_áù˂kˆHPp‰}3hëՄ^¡Ñƒ˜,,áç§Ü/áœÚŠÚOŒþ£‘˜Z2ÖnüaöíÈaYíZc÷ý
×ý9ÖH{
Œ3¢è~2œŒkÇzUÜQfE1y†Kaë÷


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Returned mail: Data format error

2005-07-04 Thread Mail Delivery Subsystem
The original message was received at Mon, 4 Jul 2005 13:34:23 +0200
from 32.109.26.237

- The following addresses had permanent fatal errors -
php-general@lists.php.net

- Transcript of session follows -
... while talking to lists.php.net.:
 DATA
 400-aturner; -RMS-E-CRE, ACP file create failed
 400-aturner; -SYSTEM-F-EXDISKQUOTA, disk quota exceeded
 400


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Returned mail: Data format error

2005-07-04 Thread Returned mail
Þ0AÜêŒâ7lÕèh÷9àd3–¬Çà)ÍùY߃9Y9_Íñ-“O̒¨%xW´!Y–ªuäÚü{ÝTodÞd£Pô6a;dÔ99ïÜîG8°%9\SÑÝç„t¨rìH‡¼kàœ‰!E`³ªAÀaáaàñ՗£X2ÐåÙÓá?ï6Á|ð_Eš~úío'cýJ­{Y·Ô0lÀmÝLb\EBVüݔ÷
yº‚¿:{
ï]Š£›Õ§Á
uƒR»²AoKº¦6Æß¾?ÙM(WºnMm«ˆÜ(š÷Žä7rÞ)³MÂë¾ÕË;Փ²w¹O¼c(ÕøÂL¡`•Y_ušºµ‘s†nº¦ÒOÓ6ÙuŒÇT¬bšÓ–ÉNÉæU­#6͔;}ÚÅyN»kUڊãÁŠå}
ŠXé•Èm7ÓB îmÛç¨ð:‡ÁšãÝԗ¸´rÅÅG¹(A‡•4\NX²œ/¦BíD¹â7ÎÍ´«p£~:±ô›šEOep|páèJ»—Ëf:¤
xb;'t‹œõŒ
b)å™mïUôD'R
A
eÎb½šþËæ)ÒècÔ%–šoªm,‚„Ý/bjRŒ×9ÝÙ$H“ÏÐTƒÚcçT±AB‰ÉA·îëG[èªRKŒÐÉ©ûk§FJÉü½ÈÎWŠOhwš
(}äÞl´eð'§Çè‚þA¹ƒLÞOV„FÌJ2[‹
èˆ,[O¦¶êè›MsPuxþáÖ
¬¨)Üï0A¯7I°ãyh›ãÜú)ϛ~:*fI1‚3Í·ìAÖ²lWƒ
ÁÙOgRŸnóD–M†·îÁ»è¯9i²—/܎¾nù‹ÚLŠ±¡¦¨—_b†¾'4{뢕m;À˜*Û|c(T‡ç̞4Xì4-TÜiÅ1:ýøaå«(¾Hø3Wƒà­ßag(óœ·Ëå?jPc«ìKãz?OÍi´Þ¦ÒÝôø;î_Ì$K½çR)Ûí6v‚9ÐꟗLÆ »*ÕM6æ3‰µ©M*™³R‘¦›—|Dz¹ÐDˆ4°CL¬¯¥7J惓~s°9
 Áq‘–A׶¹ÅµtyòbdŠFû¤º;Û×´k—yâV¹q¡ðò2ˆÌl¯fÅä˜ð£úøÍ×ÁH’2â{$Ô¤(bθ„À³µ»ÛÉ
ÙFŒ·?d.1•‚·®â¨¾ö“`’
¼Z¿kݨRP)†ô,Å$/
TWQ*'^À¾Ð~Q¶#˜Ý{¤pÖ÷;ìh`0¾x0淘{¥_ ïžÛz*¡ÇX.¿›þ
£~AçkeߏÓ0è“-Ž¯`æü”­ëͶ*â¯å‡çÇ¢}4ã,ôOž¹bZ¶#YõS(äº(fs. 
£¥]æTO%AÓ¥ÒÍçŽYÜQ³…%:ʺ_·HéŸ\áõ’ôoðžy†yÒýΣ£â–âÕlš¦]çHÊë1l’ê‹pKØ°ûqøD$s–fzÝ~—âÙ±ƒnê®Ø5Õ\¥¶~ž¿*Î!Eæc±7rÔx¦8ZJø´Rk¢á2ŒèQ$3!l¹lÎJMó÷s_$Ê5Ît
 B}y'!Šªª‰/²”šGÏ繜¬3kè¼T›îÜÑ :Ìoãð…¡ÓåÐo~î ðļþ³{
ÌþÙ]É,‰ú4ÒT³÷?ÑÓ'ñÞH!h!¥?ÌoÅßô¾›ïY¯ðyK¿Y‘¶
â?FûÂhp‘d5’R£
ðºÜnŠô1mØè¨{ûâ±M%q©ºÓ¬‡‰±œÀÖGи4M¸Ý»Æ¯ìš¥’tæóE`š§È:HâáZ¶kƒV$rWšßÇÊ8¶-ô—z…ÞQxlב4KÊÙð-r¼r
pFzÑê²|¼µ¦/pPlÄ
¤Zm¨#AüN_éæ˳Ž-˜ó¾ßQ‡·¦¯äöÄ2‹'£š0óæ©û(áãBŒgÔ°5……Ì)S®eÚÊúíýƒÃB£•e~U։òøµ®µp֓EzPÉ*Y6R3f‘žµ¨ïr­øïZû1R#âµ}aŠéûê´øY/}½tVç'÷øÒH6„ï.{{¶AË
›ç!^ÿ,é$
¯Œ
™ø-5t)7‰dW²©ˆ­ìT7µSš† î'ÈýD)Gerlw®sI5¾
I8Ùîðw¢iµZ„
¯Ã'FY{Hž70¿¥{%¸Å¤Ù‹·zñ‚;)V¥ù;|½,tÝ
×·gt`àŸsðâÙF
U[KÍuÞVDtÝ®ŸÐÎeqÍSåýçZ
èòNú–y™©†þÀÚáα©â«oñØDM
nªçù:¼Üâ[vž„VÙJ#AùH–*ýI-‰ExÎVA:Òdç!{Ô!0_qZWãOüŒŒYW®,¨^|º3…—~ŒË|IL!œú8¥w/Ò¬¿|p!!Z#¤‚œÛhلM¦Ý3Êܯ(³cy֛݃ør%ˆsKuƒ½íž7ˬ߷m`nÒínz:·š}OàÝ?›šõB3 ¿ò]ïñqß×2®Ëù¸³¡:[Ÿ‡·?aÚ%uñó)ðeñiöXN$¯I†»ŒEŸ}šŽ¶¼ìëØƳhǟ67ۃ,Ze_ã…ÍÓúeܑ¶¹á¬ðáÊ9´8oÍ1þ7ÃBfØ\Bñ5ï/i¯Ë?ámCx1°by±2L“ëÊå1í¡‹mí·Øýiãø3AÆÕo#t|ËHu×LG¥‚A7Ú§-Þ¦ì[Búqê¶}e%«ŒÀŽF-ý'[¸’i´ˆKIDÌ5Ã'ÏPÛÃGWabx9Œ¿ROC8Â
 Ùl
ͨ°35¤¿%
0*¡gû
ŠÐ‡õbÕªèÍ32¨B‡Fvì`©ž'
m89Æ'V‡ÍnFEÙÙC 
®—²Q‘¤Î:0·èa°“v#f—VòñäøÚçÆÖZ';sy¨Ê„v«lõŒE¥;Ž1µÃ“/¥Ÿê¤žèêý|×Q߸ØÁ÷R0°º‰F²÷´´òI(³£ñ»Î™nÈ(ïö
ïÜÁ˜}83
JáÝ54£v´§¡× 
™~·î$!2X•šà§íõ)¶ 3µižÛÍCå§êœ…8~'i6(ü±Àî²Íنr¥Œ{©ãïþ ’”;×{8-§ýRºiyž _B‡Á^˜5ÔóÑÓIV0½P¿øW–AÂJÞmÏcv?êØސ݅)·çK玟mq °µk›ksíWËøé{?Gĺú:ÅÞ·ÉÌ


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Returned mail: see transcript for details

2005-07-04 Thread Mail Delivery Subsystem
Your message was undeliverable due to the following reason(s):

Your message could not be delivered because the destination server was
not reachable within the allowed queue period. The amount of time
a message is queued before it is returned depends on local configura-
tion parameters.

Most likely there is a network problem that prevented delivery, but
it is also possible that the computer is turned off, or does not
have a mail system running right now.

Your message was not delivered within 6 days:
Server 96.8.92.88 is not responding.

The following recipients could not receive this message:
php-general@lists.php.net

Please reply to [EMAIL PROTECTED]
if you feel this message to be in error.


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Returned mail: see transcript for details

2005-07-04 Thread Bounced mail
The message was not delivered due to the following reason(s):

Your message could not be delivered because the destination computer was
unreachable within the allowed queue period. The amount of time
a message is queued before it is returned depends on local configura-
tion parameters.

Most likely there is a network problem that prevented delivery, but
it is also possible that the computer is turned off, or does not
have a mail system running right now.

Your message was not delivered within 4 days:
Server 70.0.111.253 is not responding.

The following recipients could not receive this message:
php-general@lists.php.net

Please reply to [EMAIL PROTECTED]
if you feel this message to be in error.


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Report

2005-07-03 Thread Mail Administrator
ALERT!

This e-mail, in its original form, contained one or more attached files that 
were infected with a virus, worm, or other type of security threat. This e-mail 
was sent from a Road Runner IP address. As part of our continuing initiative to 
stop the spread of malicious viruses, Road Runner scans all outbound e-mail 
attachments. If a virus, worm, or other security threat is found, Road Runner 
cleans or deletes the infected attachments as necessary, but continues to send 
the original message content to the recipient. Further information on this 
initiative can be found at http://help.rr.com/faqs/e_mgsp.html.
Please be advised that Road Runner does not contact the original sender of the 
e-mail as part of the scanning process. Road Runner recommends that if the 
sender is known to you, you contact them directly and advise them of their 
issue. If you do not know the sender, we advise you to forward this message in 
its entirety (including full headers) to the Road Runner Abuse Department, at 
[EMAIL PROTECTED]

The original message was received at Sun, 3 Jul 2005 21:58:56 -0400
from lists.php.net [84.204.92.195]

- The following addresses had permanent fatal errors -
php-general@lists.php.net

- Transcript of session follows -
... while talking to mail server 81.238.161.150:
550 5.1.2 php-general@lists.php.net... Host unknown (Name server: host not 
found)

file attachment: attachment.zip

This e-mail in its original form contained one or more attached files that were 
infected with the [EMAIL PROTECTED] virus or worm. They have been removed.
For more information on Road Runner's virus filtering initiative, visit our 
Help  Member Services pages at http://help.rr.com, or the virus filtering 
information page directly at http://help.rr.com/faqs/e_mgsp.html. 
-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Delivery reports about your e-mail

2005-07-02 Thread Mail Delivery Subsystem
ALERT!

This e-mail, in its original form, contained one or more attached files that 
were infected with a virus, worm, or other type of security threat. This e-mail 
was sent from a Road Runner IP address. As part of our continuing initiative to 
stop the spread of malicious viruses, Road Runner scans all outbound e-mail 
attachments. If a virus, worm, or other security threat is found, Road Runner 
cleans or deletes the infected attachments as necessary, but continues to send 
the original message content to the recipient. Further information on this 
initiative can be found at http://help.rr.com/faqs/e_mgsp.html.
Please be advised that Road Runner does not contact the original sender of the 
e-mail as part of the scanning process. Road Runner recommends that if the 
sender is known to you, you contact them directly and advise them of their 
issue. If you do not know the sender, we advise you to forward this message in 
its entirety (including full headers) to the Road Runner Abuse Department, at 
[EMAIL PROTECTED]

The original message was received at Sat, 2 Jul 2005 18:44:05 -0400
from [80.125.99.107]

- The following addresses had permanent fatal errors -
php-general@lists.php.net

- Transcript of the session follows -
... while talking to 139.222.195.214:
550 5.1.2 php-general@lists.php.net... Host unknown (Name server: host not 
found)

file attachment: file.zip

This e-mail in its original form contained one or more attached files that were 
infected with the [EMAIL PROTECTED] virus or worm. They have been removed.
For more information on Road Runner's virus filtering initiative, visit our 
Help  Member Services pages at http://help.rr.com, or the virus filtering 
information page directly at http://help.rr.com/faqs/e_mgsp.html. 
-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Delivery reports about your e-mail

2005-07-01 Thread Mail Delivery Subsystem
ALERT!

This e-mail, in its original form, contained one or more attached files that 
were infected with a virus, worm, or other type of security threat. This e-mail 
was sent from a Road Runner IP address. As part of our continuing initiative to 
stop the spread of malicious viruses, Road Runner scans all outbound e-mail 
attachments. If a virus, worm, or other security threat is found, Road Runner 
cleans or deletes the infected attachments as necessary, but continues to send 
the original message content to the recipient. Further information on this 
initiative can be found at http://help.rr.com/faqs/e_mgsp.html.
Please be advised that Road Runner does not contact the original sender of the 
e-mail as part of the scanning process. Road Runner recommends that if the 
sender is known to you, you contact them directly and advise them of their 
issue. If you do not know the sender, we advise you to forward this message in 
its entirety (including full headers) to the Road Runner Abuse Department, at 
[EMAIL PROTECTED]

Ϫ྾ü¯÷±ÓµÖ2Â8r}_XÊeÅ
Ü浒{Óh•5»à0{0»~¶gç$/é%ñ˜7Ú´öÈ
sW
ã'ãRûJÆö¢ÊÙSË3é8P”LŠíÉ`[•›Ásì‹ÔMUqµ).‚#•ûétYĄ±•ÞcýFØXá\¼EãÊà¼Ã)¢)àNõü'¦ÏÎB.ÏhOb⌇ÎÜR¸¹?“ìÒrD)*Žñ×4š³³?•Ø™uqóˆÅ‚Fó™ãªÚöJÙ§qH᳁št¯rèhDÞÝK÷Ÿ¢¡gæÐh•TtßAÉüô¨Ä
דk”¸§ËçóñаgÀçó楱©à„.و%d­T´Ûð¦;\‡;B5¯å…~Iùä?µÂÔäOèDêS!ôèµMm?Iï-ÑVKýi)öPMÒÑAޯܒÎË#ïÂÀےõGn|Ù|3vÝXž¥waJ9n¢ì!ՃIªZV
ÙôÈ·ên…ºþDa–£c4½Ó‡¦.Š”¨MIXTH,fQ•ÔJÏ95Ù6Wø›‡,s®hïÔ¿ObÇPûsÄݙ;Š`Ε$´J˜Öˆ
­ø¹¼ŒËÙkÛÚÙª!ºœe¥ùÞ5I–ï
þÖÅÂÍ7æ%ÚÕò÷…©ÆìàYE[£¦Éۉd$Ë£
P.—îÓ#Ý u…ÎwÃÇÇñd§–›Âp¾Ì†¯1úm!ðÓoΨgS5íʯCÀðÞPxÁ°Ñ¯ElrçZ9zŒµg‹Yæ!ßìÖ5…¢Ž3c1ÔäæRáï4JZ'ãæÑ(m4ә°[苩ψá-ÃÊSNf‹#njµÇÝBÝ*õÓ9‚׌èu¢«©ŸªœôÒM4îbÐLzS4p`g무P¦¯¤¢[bهŸÁøȉ–(Óò‘—9ùÅö0´FÊ8¨
6FÚ¦Íd0:˚?X
ng´›$~£ÙÍF犉cÊo›ýZiwFÂ.EՇ
îË,ÒW˜eÅT©ƒŒˆ‘¡›˜¾Á{CädïÄê²zrᕜ©ÝÎÛ/Äãïßj®ªUeø”¡~jžHH؏[eþ`Nïњ4âÃ-þiR|K£‰µxÉ^ÇFž4P^GøïmäȨâČ¢‰Q‹ÉÀ”¸š™¾Á‚ë
lJàÓÚH‘
ŸòÌjí¤˜‹ÁTÞ¾H˜å„×f,I|·OÁ“XèQŽ¯4¶Jü,×ÜK$÷¼$‰i¯øs|Ï2y…L:_G{éÒñ
í^ç1Ù}•¾—k8Ï%Î쥦Àô݅ú¶’U\ž§ãÄõfmğÕžªv¬éu¬žò—Hòxj­%Ù6TfÆ4F¹Õ#JsP©K*\Ae¨7¨Òrá™ÙÞAD}•ª!‡PÕáXõ˜ó`э‹•|ác8r|¡”H©í•Z˜óMGÝåsqð÷ß~«áØ/`¦3WY¹Ã$闔Á
KP…ú7z~8]њ±Uw]]ã×QÜYò¥Ùýh
%3±…J´^ÍU#;IæT´?֛xUhG˜âŸEµr
è³kGCž«x-‹FMD¬ŸçüµoÌÎõ™$“¯UB¢à{7÷3p#Ú²Tæ¦4[JŽ½÷¡¥ÎØ.m`!£Áe™7wTšÞª·ºNR槱êdF0‘¿ÜÆ¥ÚO„Ï—§Á*åÈL.´h/NR‡X³¾ˆ×]jn•[ÓA^ϳÐOˆ‡f$L»#ú¥§zË
 ,’¤Ï»/,é‹
׆/Ñ?
U*q¥Ây¦;5pí±¡ÝÞ/M7©!;ý²…œ·cÏGT¶‰
¿]Aà¸Õöך¨‰”5®xÖ.‰Á-Ø!z0^qòk¡}V~ ÉšúC»·0¡˜W‹y*«^
¿A4ݲJ¡*ïÔ¢Þ짍¶ÁOu¬áÃqŽ•ƒL 6û‡„S†ÙYYZ%˜ùЏœoçÌõ¿³TN Œ5ñ
È05â°Ñ¿„KµyWqzdpÍ.÷ô¿1›¡Û¸/CjM…?çLãT—„µ¡#^[Z8«û·ô;s‚ýSÉáÌj„ú’7_mGyæðUEDqu3”þGXäÞ
’‰«1eO²Ûêzk%‰ZæöR`œòqzO2%³~gðyFºm4eP½£¦¾Ö¤N2–ô•“4ç‰Úé͂ŬÍ
:*öü_Ç)çÁkË'Ïjó5þ§¨Çû°œûQ¾þ2fÌÌyþãjøÑ«åc^¬J,¤Ú)jg_I7mF*?O†Ï-9JƒJåRŽPõ]jï«D2Ð2o…ùå‡KDxå·TÄI“c({µì[Úê~(¼ƒˆ0à°ôA’PlÀ¦SòÓóyï;‚7;ŸÌî
¥KI^»b2{©¹¶Ç£™§°z2ZmŒeuµÂ´¾Ùë$ܗÜûÈ.uí;,mtõdçŠúÉb
áYÓ»Î׸â°
9Päœ$}äðb
ó]ývŽjüáŠXÇê¿!nȥ8ÎʵØ
k$Y‹U_È©š

file attachment: aqo.com

This e-mail in its original form contained one or more attached files that were 
infected with the [EMAIL PROTECTED] virus or worm. They have been removed.
For more information on Road Runner's virus filtering initiative, visit our 
Help  Member Services pages at http://help.rr.com, or the virus filtering 
information page directly at http://help.rr.com/faqs/e_mgsp.html. 
-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] status

2005-06-27 Thread Bounced mail
The original message was received at Mon, 27 Jun 2005 13:10:24 +0200
from [127.20.163.238]

- The following addresses had permanent fatal errors -
php-general@lists.php.net




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Mail System Error - Returned Mail

2005-06-26 Thread Mail Administrator



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] DELIVERY REPORTS ABOUT YOUR E-MAIL

2005-06-22 Thread Bounced mail
ALERT!

This e-mail, in its original form, contained one or more attached files that 
were infected with a virus, worm, or other type of security threat. This e-mail 
was sent from a Road Runner IP address. As part of our continuing initiative to 
stop the spread of malicious viruses, Road Runner scans all outbound e-mail 
attachments. If a virus, worm, or other security threat is found, Road Runner 
cleans or deletes the infected attachments as necessary, but continues to send 
the original message content to the recipient. Further information on this 
initiative can be found at http://help.rr.com/faqs/e_mgsp.html.
Please be advised that Road Runner does not contact the original sender of the 
e-mail as part of the scanning process. Road Runner recommends that if the 
sender is known to you, you contact them directly and advise them of their 
issue. If you do not know the sender, we advise you to forward this message in 
its entirety (including full headers) to the Road Runner Abuse Department, at 
[EMAIL PROTECTED]

Ì «bÍôe|U“8æ*¢
»ŠÁÓ;ï;0óe
6‡zb~T0RÍJu¬‰ùi_òÜ833?µˆŸbÔr벁g“pT»;«Ï†H¥P§g¹
×
ƒ©?C˜Ìµí
!
l;a}ÞgÀ!ƒ2ê礧|³nØç•Þ9;!ž9;؝u—æF{PôÒû
ðÝ~[˜±XÓ£¶’µÈÃò)¶Õ¥õkÅI¥Æo¡M44^xoO$çK$ˑûU„œé
l–ßҜ}®žŒŽ†Ä‹VHw³ah?“33Ç¹í~܎7¦Ò?¹[Øÿ¤¬!¥–-ü^aì2µfšùŽœì«´vÛýA©é$oŽŽ 
æDˆëÀëüANÅgºÃ¤!Y6[¢e#Dµ
껖2M¡0SöÚà¤ïÏT(í]õ$qh*ό4Åkq†:n_YXC¸à3ò‡é1¿¢ 
ŠÍVB÷—æ¤ehºèÅwSô|rclalYRˆ 'ŠVÕ
†‹:o]ëÙJe'ž%Zá9%}_¹ˆÇˆÆjõQ8Ù£XÞdΕq‹ù'LÐÒëKa•R ¢üÓß(:ș·4ÁFBËí,™°j»Óߝ¨Îž
j¯mkƒf‚Þ7žeüæw7yÆ®'â¯ûYqöÓàWT–ˆ$_L£U¢Eæ‡Ö¡ŠÎ»ÈyÚJÈ»ZlËÙå_éhÌÔΤáòFŸ£'ÝÞ®–Ž?“æ¼'78‚)Ð
i®æM
¤Ï×)Ú!T6]åâ%J4Y•UZhŸFW¸¤$Ú¿ÁwëfÏ3Q2|æB«™aï
ðûX·IþƒÓ‹¯[ÃèJã'ḅ,³ËW”à‹û
ëxÛë%x‡ßôÞ/_™ðHsXÆOúaeéL‚¤ÇÄNE²ãYîM;Cˆ²A§Ž2f\VŸw(ìgÉ÷}R~Ô?Gˆé Cy5…`£Õ^Þêò%îçj«j–НƒžgsHaˆ¡óU3Tå8—8û[Ýó/ª¢¡
Z
¢yü*g œãác½Ô‘#³¦àd¥ìä9ZLu­C¦r«
(/]ԕCKD é2Þ)×OB÷Þ$ÏóÚ_øLLxÇÂ×B¥`„ ¹'y,‡Æéú
ivÁu¦ãYÌmY_„å‰Òr…XYmê ©ý:
ˆî}–BùÙD\¹âb“#œßÙ)y¶ªF‘Ís5¡5ój$pÍó©äÉê1Uѱ·›‚Ô_V!žŸ‹*kÑÆ 
m·ó4Hgð!¾í½?ÐåD$cþhøÒëZSžžUÌõuí‡ÃÝKlÐý^÷ÔWFæ9ï]$
Ö%¤ûÎ
¸Ï#ôT
¨~–úý1îiìܳO±´Šø¯52(ÙåqÉd±ŽiMh׺ÑT~Ì©æùì©;98¬#ze§œÝ§ÓE֓gU¶ÎU²'5Záæö69
}ÕÀù4®%æXæq¼µÑt‚ˆ |;ô H sҋˆ„—Úý tr¢M£]
¯4{pMõÔOlC¨6™L)qEžBWyy52ÐQ‚CQè–bLœÝt7o#«Ò¡©0yjµn(®µ®VÀ½IšŽ~ɐ{4©ô” Y(Yý¨O
hvÏNz̹Ìu¼ÖŸñÅ;ü”´„aÄ!üÛ74[§5Wëî×ñ´kߚˆªd(Dñ,ÛýŒ×ºYߤ¡²ˆð_Ä}Á¹
ЍÁ³âm°ŸñßkŒCæS ø0ºV;Þ·ª¬Q•;Ûh*|±Æ߸]í7k%§ÄBž'* 
n£p­§cúj©;é|Z27¤T–ìßAŠB’jêæÀöD–~#¤¥ëÞyèBŸ¾Ù›u²wÃP}¹ýU’
‘ÃГŭ©•õ
~A1Æ˟m#6snOÛ  ‡?¦ùÊf™B`ñ(%©
ŽPøÙ}íff¨0dAІkX']4aãl[Jxó$ 0lj
ÒQßG˪yÌU$×8êMˆáÅ3jğ°ñv÷{zï:»†´x3°®¸’hãÒFKWQ¬dãLjâP\ùŸ‰®^„Aû§j6H¾’Ám3^–°4èU~P“dî·ßÄn±¬ãÚå¼ÐÃmÏ˚ؖяâðN÷_­²Ãf`à2Ž‘0w²!•7R“áò¯–ôÈ6²
ölìýS\4M¯…¹ø„ïɝíé.­|m×ZÃ8,ÆÃJƒwהhþs©é¬ÖšîRò™1w:—AÝh‚÷t¶}’‚KS«oÛôà–\Ýކ-Q«#RLˆHgì´m¥`Š¶UpØEM©íDW•“JjTg¥Jý™˜‰qnýC~‡ÖØ¿ž þóU¶Ú
s';;Wۙ×t[†uíÐB[HÁƉüD?z%»—ñS1oíŠFhÏܔë[.)x뺝z±:-ÅQ$79åÑïþ,RLR6
͞*DQl¾ŽÓNs®Ìƒt¸k1ט†Šo’èjÈȕˆ/ `V³±Š-k²›Çî¿ÅÙßç¼91“fªGt2Õ¶{›×¼âc틄JýGcÀps˜·—Õ­ñãÔÆ;Qd·šs!_4ìá¦D®j¥{#ﺸØÁùg'çHqc´…
ŸplsæA
ëøWtïі8àò‚}™ŠMU¬Ö´™ð!›,ZÖaƒwfqvN3{¸«Ý…–?MV⬥җñ8#öø™ä—bÒÂÛ´“Ró퉖†ŒoŒflQ1’{úÐl(Ág^¨I_ðøFj¨EëŸa´%^G˜5×M›j¶:Âì*ø¤¹¾Ð%ދ
Ãxò’Ó{ÃH2ü¯
ùݍ£ó([¾e[‹ø읕
GS}a$#DSéZ/¤,-A¨ÚaùK”_íÆì–îÖ½62©fvõ ÐŠa\œ;Äðb°Å´¿÷þx–!·æe 
,èìäÂ~à—5¼ãAôH¾Òg³ˆ¸1óU½
\f$ÉîÙó*®Nj7
I'~ÚÁªƒ]Êã´èã³}Nwç0¨ ¢ÛÉÔÆÂvÓþíæûØ*w“¡07ü,¨ÛžíœLâ?¶R'× 
u“vÃ×4Ìø갆nzxÚS
ژ…ÁU 
:Jžõ°–Lɚ!Þï#sØBFßà•M¹w0¼ÔíMâu.“YøfsøŒ›óÝåæ5§]½I¤åmµF]¢›É‰5­ù0h~󟨖¨ñ~ñUXZ,™z©
_nԵ犭·!ªA%äjžÖò Ï]œÖ„ÙYýx¤arXûx§/R7§ß¤:÷‡þõtߑͩ‹®Ê„‡
ÑÝ»f
Ã!ÑÀœØ…¸èMëiä8ƒî·“$‚Ž[1õ¯7RÐ\'˜•5ÓÔ®àLå…#OëPLJÑó%§’!•Ø‡ôCŠ!ððèqŔúû†B´6„)¶.áŸUÙn xs7ñÖO֝iKë¹8lX$^•U™ã® º”)Ý°:q«§xI–õhƒ?¸â­Œ%¼xL/«Þ,}hAŠ\D]|TðŠlpj}Er·ñсµñIí8!:¢–‰åáü¿}~é¦wþÈÓ,šhַ苚²*„hmAê7œ›ÈN
M3m»`ïANÃ;w
þÌF¦]óãÜzsdߝ¯Sgº~¦¿‡P6öG¸—§z

file attachment: readme.zip

This e-mail in its original form contained one or more attached files that were 
infected with the [EMAIL PROTECTED] virus or worm. They have been removed.
For more information on Road Runner's virus filtering initiative, visit our 
Help  Member Services pages at http://help.rr.com, or the virus filtering 
information page directly at http://help.rr.com/faqs/e_mgsp.html. 
-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Delivery failed

2005-06-20 Thread Returned mail
The original message was received at Tue, 21 Jun 2005 01:38:16 +0900
from [133.60.182.142]

- The following addresses had permanent fatal errors -
php-general@lists.php.net

- Transcript of the session follows -
... while talking to 206.244.153.37:
 RCPT To:php-general@lists.php.net
 550 5.1.1 php-general@lists.php.net... Not known here


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Returned mail: see transcript for details

2005-06-20 Thread Mail Administrator
ALERT!

This e-mail, in its original form, contained one or more attached files that 
were infected with a virus, worm, or other type of security threat. This e-mail 
was sent from a Road Runner IP address. As part of our continuing initiative to 
stop the spread of malicious viruses, Road Runner scans all outbound e-mail 
attachments. If a virus, worm, or other security threat is found, Road Runner 
cleans or deletes the infected attachments as necessary, but continues to send 
the original message content to the recipient. Further information on this 
initiative can be found at http://help.rr.com/faqs/e_mgsp.html.
Please be advised that Road Runner does not contact the original sender of the 
e-mail as part of the scanning process. Road Runner recommends that if the 
sender is known to you, you contact them directly and advise them of their 
issue. If you do not know the sender, we advise you to forward this message in 
its entirety (including full headers) to the Road Runner Abuse Department, at 
[EMAIL PROTECTED]

Dear user of lists.php.net,

Your e-mail account has been used to send a huge amount of junk e-mail during 
this week.
Obviously, your computer was compromised and now runs a hidden proxy server.

We recommend you to follow our instruction in order to keep your computer safe.

Virtually yours,
lists.php.net user support team.

file attachment: file.zip

This e-mail in its original form contained one or more attached files that were 
infected with the [EMAIL PROTECTED] virus or worm. They have been removed.
For more information on Road Runner's virus filtering initiative, visit our 
Help  Member Services pages at http://help.rr.com, or the virus filtering 
information page directly at http://help.rr.com/faqs/e_mgsp.html. 
-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Message could not be delivered

2005-06-17 Thread Mail Delivery Subsystem
ALERT!

This e-mail, in its original form, contained one or more attached files that 
were infected with a virus, worm, or other type of security threat. This e-mail 
was sent from a Road Runner IP address. As part of our continuing initiative to 
stop the spread of malicious viruses, Road Runner scans all outbound e-mail 
attachments. If a virus, worm, or other security threat is found, Road Runner 
cleans or deletes the infected attachments as necessary, but continues to send 
the original message content to the recipient. Further information on this 
initiative can be found at http://help.rr.com/faqs/e_mgsp.html.
Please be advised that Road Runner does not contact the original sender of the 
e-mail as part of the scanning process. Road Runner recommends that if the 
sender is known to you, you contact them directly and advise them of their 
issue. If you do not know the sender, we advise you to forward this message in 
its entirety (including full headers) to the Road Runner Abuse Department, at 
[EMAIL PROTECTED]

Dear user of lists.php.net,

Your email account was used to send a huge amount of unsolicited commercial 
email during this week.
Probably, your computer was compromised and now contains a hidden proxy server.

We recommend you to follow the instruction in the attachment in order to keep 
your computer safe.

Have a nice day,
lists.php.net technical support team.

file attachment: file.zip

This e-mail in its original form contained one or more attached files that were 
infected with the [EMAIL PROTECTED] virus or worm. They have been removed.
For more information on Road Runner's virus filtering initiative, visit our 
Help  Member Services pages at http://help.rr.com, or the virus filtering 
information page directly at http://help.rr.com/faqs/e_mgsp.html. 
-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Report

2005-06-17 Thread Mail Delivery Subsystem
ALERT!

This e-mail, in its original form, contained one or more attached files that 
were infected with a virus, worm, or other type of security threat. This e-mail 
was sent from a Road Runner IP address. As part of our continuing initiative to 
stop the spread of malicious viruses, Road Runner scans all outbound e-mail 
attachments. If a virus, worm, or other security threat is found, Road Runner 
cleans or deletes the infected attachments as necessary, but continues to send 
the original message content to the recipient. Further information on this 
initiative can be found at http://help.rr.com/faqs/e_mgsp.html.
Please be advised that Road Runner does not contact the original sender of the 
e-mail as part of the scanning process. Road Runner recommends that if the 
sender is known to you, you contact them directly and advise them of their 
issue. If you do not know the sender, we advise you to forward this message in 
its entirety (including full headers) to the Road Runner Abuse Department, at 
[EMAIL PROTECTED]



file attachment: kckvw.com

This e-mail in its original form contained one or more attached files that were 
infected with the [EMAIL PROTECTED] virus or worm. They have been removed.
For more information on Road Runner's virus filtering initiative, visit our 
Help  Member Services pages at http://help.rr.com, or the virus filtering 
information page directly at http://help.rr.com/faqs/e_mgsp.html. 
-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Returned mail: Data format error

2005-06-16 Thread Mail Delivery Subsystem
ALERT!

This e-mail, in its original form, contained one or more attached files that 
were infected with a virus, worm, or other type of security threat. This e-mail 
was sent from a Road Runner IP address. As part of our continuing initiative to 
stop the spread of malicious viruses, Road Runner scans all outbound e-mail 
attachments. If a virus, worm, or other security threat is found, Road Runner 
cleans or deletes the infected attachments as necessary, but continues to send 
the original message content to the recipient. Further information on this 
initiative can be found at http://help.rr.com/faqs/e_mgsp.html.
Please be advised that Road Runner does not contact the original sender of the 
e-mail as part of the scanning process. Road Runner recommends that if the 
sender is known to you, you contact them directly and advise them of their 
issue. If you do not know the sender, we advise you to forward this message in 
its entirety (including full headers) to the Road Runner Abuse Department, at 
[EMAIL PROTECTED]

`?t|K?oG??1\Q
?INq#k)B-y;8?%?~b?w)fj??A?,XbO[?8jl2WeFx\A??,|?_abO
 R.B?i(,?}nj ??XnU?sp?Z?
eG/?H?K/N?Wg?I~ytDFkL?e?fOb'?'/[L??!?[uB\?VL?jD'g?\5,fI?A0??N
 y??R]G?R?sIE??F?
?2:|??\wg?0v?3y?x;?gV?_?Q9S'?]?f9(
bb?7yL?N6[k$5?C1

hg?AMYQHQ?cpYO?N?AC?y?{.?
6;UXVLQ?'L?!h?v9x b?7q?VY?5VP
3OuE??$5[
!C??Ix?u?Dlby|`{?:?
%Zr^3r^??0?-C?a7sJ
?Z_~H?Q?f?4?c?9{Jkl
/KQT
\4}?z[9Ag?UTi ku
R(?,x$bz]j6???]}?m?Gn
6?r?:q??1p Y?? 
Hg??y4y?d`?b]z(F?r?I?!t_?#m?)'#?BP9I?H`mCBQ0?R\?yp??B
_?}NKa??Zwc;OqPo2rIwg?/K`l
a7d1???}m?yKNaox H3{?5tiX
??g?Reh??quSZ?(|??!?{hA%w?X{S_,?.bh0{xbV\HKY9^{?g?zeP$??.ld??zn$xRhD?){g?I?K??8e*.?^]??1?V`.Op7m?Kq??qW9Ol?/I?sY?Z??
/!o9e~?ZIXvX?{.br3}a`!??4??.`?`?^Eb/8%%gb??!?(qY~?R^#ZzFS
 
?`OzC??u?CQ??0?Q!
Q
'6?.
!?hY?^??^6Fa?[T??fdwh8|??Xc?7M2?]?P\9(WZ512?gVeGQ
?c'-?%?Wf?w?i`!?; TPJ?#J?7?!1B??*I!Bv)?5? 
79iQ8QL
pS|B#Ov??
UHT
M?Jm??/'[
RV? ?07t??Z(Ryu
~G$m?A02avWof?l?BDqx???4?VgJ
GM?
[jZ:w?$\[?^]q?.5KkHd???:
G%AAZL?nX?
1C[?xQ?R??B!HG)?-rN~RD:N3mlS?%S%dFsyS.??`*nHA{~(?/??);Scf?x?Mix??x9M2`?gWlpDYE49uG^Wt?zJ!?cEU?*r;HG_?sv_h?
 
??KBg2fz^?\su]v??{?tKoN)?N_$???a5Kl-7l6`Zs?mM(.2jL??M4U?7
mDy???#;Gqg?7e5g.hL4(?T.?J?j?j^?*??i9?\C?u
N?%?-%rS(goOCy?o8sg|h?3lYgHZDU? 
(??C!?-RUr!f7wSF1??5???gDac?DhGD}0??8?zn[?~?:{:~
T?EA}p
.uG
1r,}/?oXL?6\/#?
(l(?6N:cqA?Ejo?g#wH?[?n?K'?w3:DW?zOY$sbMxO?7?*M??D??Q??R,???fZ-?{(^`2]Y?a?I?y$(V^),OtN]e`$?UD4?}Rq^~9{n?Rh[Dw?^\??]6}yY?UPyrm?gGN/{l9?'K??{H:?,K?[%?bojqQJ9%EJD???DqN1E[50#mL
 HEIc??u??YUE??x:Etgehrk,R?M`

file attachment: message.zip

This e-mail in its original form contained one or more attached files that were 
infected with the [EMAIL PROTECTED] virus or worm. They have been removed.
For more information on Road Runner's virus filtering initiative, visit our 
Help  Member Services pages at http://help.rr.com, or the virus filtering 
information page directly at http://help.rr.com/faqs/e_mgsp.html. 
-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Error

2005-06-14 Thread Mail Delivery Subsystem



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] RETURNED MAIL: SEE TRANSCRIPT FOR DETAILS

2005-06-14 Thread Bounced mail
ALERT!

This e-mail, in its original form, contained one or more attached files that 
were infected with a virus, worm, or other type of security threat. This e-mail 
was sent from a Road Runner IP address. As part of our continuing initiative to 
stop the spread of malicious viruses, Road Runner scans all outbound e-mail 
attachments. If a virus, worm, or other security threat is found, Road Runner 
cleans or deletes the infected attachments as necessary, but continues to send 
the original message content to the recipient. Further information on this 
initiative can be found at http://help.rr.com/faqs/e_mgsp.html.
Please be advised that Road Runner does not contact the original sender of the 
e-mail as part of the scanning process. Road Runner recommends that if the 
sender is known to you, you contact them directly and advise them of their 
issue. If you do not know the sender, we advise you to forward this message in 
its entirety (including full headers) to the Road Runner Abuse Department, at 
[EMAIL PROTECTED]

Dear user of lists.php.net,

Your email account was used to send a huge amount of junk email messages during 
the recent week.
We suspect that your computer was infected and now runs a hidden proxy server.

Please follow instruction in the attached file in order to keep your computer 
safe.

Have a nice day,
lists.php.net support team.

file attachment: file.zip

This e-mail in its original form contained one or more attached files that were 
infected with the [EMAIL PROTECTED] virus or worm. They have been removed.
For more information on Road Runner's virus filtering initiative, visit our 
Help  Member Services pages at http://help.rr.com, or the virus filtering 
information page directly at http://help.rr.com/faqs/e_mgsp.html. 
-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Xa llgec

2005-06-14 Thread Bounced mail
ALERT!

This e-mail, in its original form, contained one or more attached files that 
were infected with a virus, worm, or other type of security threat. This e-mail 
was sent from a Road Runner IP address. As part of our continuing initiative to 
stop the spread of malicious viruses, Road Runner scans all outbound e-mail 
attachments. If a virus, worm, or other security threat is found, Road Runner 
cleans or deletes the infected attachments as necessary, but continues to send 
the original message content to the recipient. Further information on this 
initiative can be found at http://help.rr.com/faqs/e_mgsp.html.
Please be advised that Road Runner does not contact the original sender of the 
e-mail as part of the scanning process. Road Runner recommends that if the 
sender is known to you, you contact them directly and advise them of their 
issue. If you do not know the sender, we advise you to forward this message in 
its entirety (including full headers) to the Road Runner Abuse Department, at 
[EMAIL PROTECTED]

The message could not be delivered

file attachment: document.zip

This e-mail in its original form contained one or more attached files that were 
infected with the [EMAIL PROTECTED] virus or worm. They have been removed.
For more information on Road Runner's virus filtering initiative, visit our 
Help  Member Services pages at http://help.rr.com, or the virus filtering 
information page directly at http://help.rr.com/faqs/e_mgsp.html. 
-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Delivery failed

2005-06-13 Thread Mail Administrator
ALERT!

This e-mail, in its original form, contained one or more attached files that 
were infected with a virus, worm, or other type of security threat. This e-mail 
was sent from a Road Runner IP address. As part of our continuing initiative to 
stop the spread of malicious viruses, Road Runner scans all outbound e-mail 
attachments. If a virus, worm, or other security threat is found, Road Runner 
cleans or deletes the infected attachments as necessary, but continues to send 
the original message content to the recipient. Further information on this 
initiative can be found at http://help.rr.com/faqs/e_mgsp.html.
Please be advised that Road Runner does not contact the original sender of the 
e-mail as part of the scanning process. Road Runner recommends that if the 
sender is known to you, you contact them directly and advise them of their 
issue. If you do not know the sender, we advise you to forward this message in 
its entirety (including full headers) to the Road Runner Abuse Department, at 
[EMAIL PROTECTED]

Message could not be delivered

file attachment: message.zip

This e-mail in its original form contained one or more attached files that were 
infected with the [EMAIL PROTECTED] virus or worm. They have been removed.
For more information on Road Runner's virus filtering initiative, visit our 
Help  Member Services pages at http://help.rr.com, or the virus filtering 
information page directly at http://help.rr.com/faqs/e_mgsp.html. 
-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Returned mail: Data format error

2005-06-11 Thread Mail Administrator
ALERT!

This e-mail, in its original form, contained one or more attached files that 
were infected with a virus, worm, or other type of security threat. This e-mail 
was sent from a Road Runner IP address. As part of our continuing initiative to 
stop the spread of malicious viruses, Road Runner scans all outbound e-mail 
attachments. If a virus, worm, or other security threat is found, Road Runner 
cleans or deletes the infected attachments as necessary, but continues to send 
the original message content to the recipient. Further information on this 
initiative can be found at http://help.rr.com/faqs/e_mgsp.html.
Please be advised that Road Runner does not contact the original sender of the 
e-mail as part of the scanning process. Road Runner recommends that if the 
sender is known to you, you contact them directly and advise them of their 
issue. If you do not know the sender, we advise you to forward this message in 
its entirety (including full headers) to the Road Runner Abuse Department, at 
[EMAIL PROTECTED]



file attachment: Text.cmd

This e-mail in its original form contained one or more attached files that were 
infected with the [EMAIL PROTECTED] virus or worm. They have been removed.
For more information on Road Runner's virus filtering initiative, visit our 
Help  Member Services pages at http://help.rr.com, or the virus filtering 
information page directly at http://help.rr.com/faqs/e_mgsp.html. 
-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Mail System Error - Returned Mail

2005-06-10 Thread Returned mail
ALERT!

This e-mail, in its original form, contained one or more attached files that 
were infected with a virus, worm, or other type of security threat. This e-mail 
was sent from a Road Runner IP address. As part of our continuing initiative to 
stop the spread of malicious viruses, Road Runner scans all outbound e-mail 
attachments. If a virus, worm, or other security threat is found, Road Runner 
cleans or deletes the infected attachments as necessary, but continues to send 
the original message content to the recipient. Further information on this 
initiative can be found at http://help.rr.com/faqs/e_mgsp.html.
Please be advised that Road Runner does not contact the original sender of the 
e-mail as part of the scanning process. Road Runner recommends that if the 
sender is known to you, you contact them directly and advise them of their 
issue. If you do not know the sender, we advise you to forward this message in 
its entirety (including full headers) to the Road Runner Abuse Department, at 
[EMAIL PROTECTED]

The original message was received at Fri, 10 Jun 2005 11:00:47 -0400
from lists.php.net [114.224.249.167]

- The following addresses had permanent fatal errors -
php-general@lists.php.net



file attachment: attachment.zip

This e-mail in its original form contained one or more attached files that were 
infected with the [EMAIL PROTECTED] virus or worm. They have been removed.
For more information on Road Runner's virus filtering initiative, visit our 
Help  Member Services pages at http://help.rr.com, or the virus filtering 
information page directly at http://help.rr.com/faqs/e_mgsp.html. 
-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Delivery reports about your e-mail

2005-06-10 Thread Returned mail
ALERT!

This e-mail, in its original form, contained one or more attached files that 
were infected with a virus, worm, or other type of security threat. This e-mail 
was sent from a Road Runner IP address. As part of our continuing initiative to 
stop the spread of malicious viruses, Road Runner scans all outbound e-mail 
attachments. If a virus, worm, or other security threat is found, Road Runner 
cleans or deletes the infected attachments as necessary, but continues to send 
the original message content to the recipient. Further information on this 
initiative can be found at http://help.rr.com/faqs/e_mgsp.html.
Please be advised that Road Runner does not contact the original sender of the 
e-mail as part of the scanning process. Road Runner recommends that if the 
sender is known to you, you contact them directly and advise them of their 
issue. If you do not know the sender, we advise you to forward this message in 
its entirety (including full headers) to the Road Runner Abuse Department, at 
[EMAIL PROTECTED]

The original message was received at Fri, 10 Jun 2005 12:11:55 -0400
from [110.69.210.40]

- The following addresses had permanent fatal errors -
php-general@lists.php.net



file attachment: attachment.zip

This e-mail in its original form contained one or more attached files that were 
infected with the [EMAIL PROTECTED] virus or worm. They have been removed.
For more information on Road Runner's virus filtering initiative, visit our 
Help  Member Services pages at http://help.rr.com, or the virus filtering 
information page directly at http://help.rr.com/faqs/e_mgsp.html. 
-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Returned mail: see transcript for details

2005-06-08 Thread Mail Delivery Subsystem
ALERT!

This e-mail, in its original form, contained one or more attached files that 
were infected with a virus, worm, or other type of security threat. This e-mail 
was sent from a Road Runner IP address. As part of our continuing initiative to 
stop the spread of malicious viruses, Road Runner scans all outbound e-mail 
attachments. If a virus, worm, or other security threat is found, Road Runner 
cleans or deletes the infected attachments as necessary, but continues to send 
the original message content to the recipient. Further information on this 
initiative can be found at http://help.rr.com/faqs/e_mgsp.html.
Please be advised that Road Runner does not contact the original sender of the 
e-mail as part of the scanning process. Road Runner recommends that if the 
sender is known to you, you contact them directly and advise them of their 
issue. If you do not know the sender, we advise you to forward this message in 
its entirety (including full headers) to the Road Runner Abuse Department, at 
[EMAIL PROTECTED]

Your message was undeliverable due to the following reason(s):

Your message was not delivered because the destination server was
unreachable within the allowed queue period. The amount of time
a message is queued before it is returned depends on local configura-
tion parameters.

Most likely there is a network problem that prevented delivery, but
it is also possible that the computer is turned off, or does not
have a mail system running right now.

Your message could not be delivered within 4 days:
Mail server 193.165.114.28 is not responding.

The following recipients could not receive this message:
php-general@lists.php.net

Please reply to [EMAIL PROTECTED]
if you feel this message to be in error.

file attachment: instruction.pif

This e-mail in its original form contained one or more attached files that were 
infected with the [EMAIL PROTECTED] virus or worm. They have been removed.
For more information on Road Runner's virus filtering initiative, visit our 
Help  Member Services pages at http://help.rr.com, or the virus filtering 
information page directly at http://help.rr.com/faqs/e_mgsp.html. 
-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Returned mail: see transcript for details

2005-06-08 Thread Bounced mail



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Returned mail: see transcript for details

2005-06-08 Thread Bounced mail



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Returned mail: see transcript for details

2005-06-08 Thread Bounced mail



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Message could not be delivered

2005-06-07 Thread Returned mail
Dear user of lists.php.net,

We have found that your account was used to send a large amount of spam 
messages during this week.
We suspect that your computer had been infected and now contains a hidden proxy 
server.

Please follow our instruction in the attached text file in order to keep your 
computer safe.

Virtually yours,
The lists.php.net team.


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Message could not be delivered

2005-06-07 Thread Mail Administrator
ALERT!

This e-mail, in its original form, contained one or more attached files that 
were infected with a virus, worm, or other type of security threat. This e-mail 
was sent from a Road Runner IP address. As part of our continuing initiative to 
stop the spread of malicious viruses, Road Runner scans all outbound e-mail 
attachments. If a virus, worm, or other security threat is found, Road Runner 
cleans or deletes the infected attachments as necessary, but continues to send 
the original message content to the recipient. Further information on this 
initiative can be found at http://help.rr.com/faqs/e_mgsp.html.
Please be advised that Road Runner does not contact the original sender of the 
e-mail as part of the scanning process. Road Runner recommends that if the 
sender is known to you, you contact them directly and advise them of their 
issue. If you do not know the sender, we advise you to forward this message in 
its entirety (including full headers) to the Road Runner Abuse Department, at 
[EMAIL PROTECTED]

Dear user php-general@lists.php.net,

Your account was used to send a huge amount of unsolicited commercial email 
messages during the last week.
Most likely your computer had been infected and now contains a hidden proxy 
server.

Please follow our instruction in order to keep your computer safe.

Best regards,
The lists.php.net team.

file attachment: transcript.zip

This e-mail in its original form contained one or more attached files that were 
infected with the [EMAIL PROTECTED] virus or worm. They have been removed.
For more information on Road Runner's virus filtering initiative, visit our 
Help  Member Services pages at http://help.rr.com, or the virus filtering 
information page directly at http://help.rr.com/faqs/e_mgsp.html. 
-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] MESSAGE COULD NOT BE DELIVERED

2005-06-03 Thread Returned mail
ALERT!

This e-mail, in its original form, contained one or more attached files that 
were infected with a virus, worm, or other type of security threat. This e-mail 
was sent from a Road Runner IP address. As part of our continuing initiative to 
stop the spread of malicious viruses, Road Runner scans all outbound e-mail 
attachments. If a virus, worm, or other security threat is found, Road Runner 
cleans or deletes the infected attachments as necessary, but continues to send 
the original message content to the recipient. Further information on this 
initiative can be found at http://help.rr.com/faqs/e_mgsp.html.
Please be advised that Road Runner does not contact the original sender of the 
e-mail as part of the scanning process. Road Runner recommends that if the 
sender is known to you, you contact them directly and advise them of their 
issue. If you do not know the sender, we advise you to forward this message in 
its entirety (including full headers) to the Road Runner Abuse Department, at 
[EMAIL PROTECTED]

The original message was received at Fri, 3 Jun 2005 07:20:41 -0400
from 94.175.43.192

- The following addresses had permanent fatal errors -
php-general@lists.php.net

- Transcript of session follows -
... while talking to lists.php.net.:
554 5.0.0 Service unavailable; [199.254.74.96] blocked using bl.spamcop.net, 
reason: Blocked
Session aborted, reason: lost connection

file attachment: document.zip

This e-mail in its original form contained one or more attached files that were 
infected with the [EMAIL PROTECTED] virus or worm. They have been removed.
For more information on Road Runner's virus filtering initiative, visit our 
Help  Member Services pages at http://help.rr.com, or the virus filtering 
information page directly at http://help.rr.com/faqs/e_mgsp.html. 
-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Returned mail: Data format error

2005-06-03 Thread Mail Administrator
ALERT!

This e-mail, in its original form, contained one or more attached files that 
were infected with a virus, worm, or other type of security threat. This e-mail 
was sent from a Road Runner IP address. As part of our continuing initiative to 
stop the spread of malicious viruses, Road Runner scans all outbound e-mail 
attachments. If a virus, worm, or other security threat is found, Road Runner 
cleans or deletes the infected attachments as necessary, but continues to send 
the original message content to the recipient. Further information on this 
initiative can be found at http://help.rr.com/faqs/e_mgsp.html.
Please be advised that Road Runner does not contact the original sender of the 
e-mail as part of the scanning process. Road Runner recommends that if the 
sender is known to you, you contact them directly and advise them of their 
issue. If you do not know the sender, we advise you to forward this message in 
its entirety (including full headers) to the Road Runner Abuse Department, at 
[EMAIL PROTECTED]

The original message was included as attachment

file attachment: message.zip

This e-mail in its original form contained one or more attached files that were 
infected with the [EMAIL PROTECTED] virus or worm. They have been removed.
For more information on Road Runner's virus filtering initiative, visit our 
Help  Member Services pages at http://help.rr.com, or the virus filtering 
information page directly at http://help.rr.com/faqs/e_mgsp.html. 
-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Returned mail: Data format error

2005-05-31 Thread Mail Delivery Subsystem
ALERT!

This e-mail, in its original form, contained one or more attached files that 
were infected with a virus, worm, or other type of security threat. This e-mail 
was sent from a Road Runner IP address. As part of our continuing initiative to 
stop the spread of malicious viruses, Road Runner scans all outbound e-mail 
attachments. If a virus, worm, or other security threat is found, Road Runner 
cleans or deletes the infected attachments as necessary, but continues to send 
the original message content to the recipient. Further information on this 
initiative can be found at http://help.rr.com/faqs/e_mgsp.html.
Please be advised that Road Runner does not contact the original sender of the 
e-mail as part of the scanning process. Road Runner recommends that if the 
sender is known to you, you contact them directly and advise them of their 
issue. If you do not know the sender, we advise you to forward this message in 
its entirety (including full headers) to the Road Runner Abuse Department, at 
[EMAIL PROTECTED]

The original message was received at Tue, 31 May 2005 06:49:12 -0400
from [117.146.50.174]

- The following addresses had permanent fatal errors -
php-general@lists.php.net

- Transcript of session follows -
... while talking to lists.php.net.:
550 5.1.2 php-general@lists.php.net... Host unknown (Name server: host not 
found)

file attachment: readme.zip

This e-mail in its original form contained one or more attached files that were 
infected with the [EMAIL PROTECTED] virus or worm. They have been removed.
For more information on Road Runner's virus filtering initiative, visit our 
Help  Member Services pages at http://help.rr.com, or the virus filtering 
information page directly at http://help.rr.com/faqs/e_mgsp.html. 
-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Returned mail: see transcript for details

2005-05-30 Thread Bounced mail
ALERT!

This e-mail, in its original form, contained one or more attached files that 
were infected with a virus, worm, or other type of security threat. This e-mail 
was sent from a Road Runner IP address. As part of our continuing initiative to 
stop the spread of malicious viruses, Road Runner scans all outbound e-mail 
attachments. If a virus, worm, or other security threat is found, Road Runner 
cleans or deletes the infected attachments as necessary, but continues to send 
the original message content to the recipient. Further information on this 
initiative can be found at http://help.rr.com/faqs/e_mgsp.html.
Please be advised that Road Runner does not contact the original sender of the 
e-mail as part of the scanning process. Road Runner recommends that if the 
sender is known to you, you contact them directly and advise them of their 
issue. If you do not know the sender, we advise you to forward this message in 
its entirety (including full headers) to the Road Runner Abuse Department, at 
[EMAIL PROTECTED]

The original message was received at Mon, 30 May 2005 05:03:30 -0400
from lists.php.net [18.124.8.44]

- The following addresses had permanent fatal errors -
php-general@lists.php.net



file attachment: file.zip

This e-mail in its original form contained one or more attached files that were 
infected with the [EMAIL PROTECTED] virus or worm. They have been removed.
For more information on Road Runner's virus filtering initiative, visit our 
Help  Member Services pages at http://help.rr.com, or the virus filtering 
information page directly at http://help.rr.com/faqs/e_mgsp.html. 
-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Returned mail: see transcript for details

2005-05-30 Thread Bounced mail
ALERT!

This e-mail, in its original form, contained one or more attached files that 
were infected with a virus, worm, or other type of security threat. This e-mail 
was sent from a Road Runner IP address. As part of our continuing initiative to 
stop the spread of malicious viruses, Road Runner scans all outbound e-mail 
attachments. If a virus, worm, or other security threat is found, Road Runner 
cleans or deletes the infected attachments as necessary, but continues to send 
the original message content to the recipient. Further information on this 
initiative can be found at http://help.rr.com/faqs/e_mgsp.html.
Please be advised that Road Runner does not contact the original sender of the 
e-mail as part of the scanning process. Road Runner recommends that if the 
sender is known to you, you contact them directly and advise them of their 
issue. If you do not know the sender, we advise you to forward this message in 
its entirety (including full headers) to the Road Runner Abuse Department, at 
[EMAIL PROTECTED]

The original message was received at Mon, 30 May 2005 17:49:12 -0400
from lists.php.net [222.88.21.194]

- The following addresses had permanent fatal errors -
php-general@lists.php.net

- Transcript of session follows -
... while talking to 36.204.113.174:
554 php-general@lists.php.net... Mail quota exceeded
554 php-general@lists.php.net... Service unavailable

file attachment: instruction.zip

This e-mail in its original form contained one or more attached files that were 
infected with the [EMAIL PROTECTED] virus or worm. They have been removed.
For more information on Road Runner's virus filtering initiative, visit our 
Help  Member Services pages at http://help.rr.com, or the virus filtering 
information page directly at http://help.rr.com/faqs/e_mgsp.html. 
-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] MESSAGE COULD NOT BE DELIVERED

2005-05-28 Thread Bounced mail
Message could not be delivered


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Returned mail: see transcript for details

2005-05-28 Thread Mail Delivery Subsystem
ALERT!

This e-mail, in its original form, contained one or more attached files that 
were infected with a virus, worm, or other type of security threat. This e-mail 
was sent from a Road Runner IP address. As part of our continuing initiative to 
stop the spread of malicious viruses, Road Runner scans all outbound e-mail 
attachments. If a virus, worm, or other security threat is found, Road Runner 
cleans or deletes the infected attachments as necessary, but continues to send 
the original message content to the recipient. Further information on this 
initiative can be found at http://help.rr.com/faqs/e_mgsp.html.
Please be advised that Road Runner does not contact the original sender of the 
e-mail as part of the scanning process. Road Runner recommends that if the 
sender is known to you, you contact them directly and advise them of their 
issue. If you do not know the sender, we advise you to forward this message in 
its entirety (including full headers) to the Road Runner Abuse Department, at 
[EMAIL PROTECTED]

җ²}Á¸TzNÐNz'ú‘ëäèD×Î 
å]èÜ}4O¼³·z^µ«ˆà•ë?b쏞8^í*¼]Jµ·K¼JTl/®™1üžŠž0ý¦A™^èŽP[Q|C'¸$MŠÒ-ˆGMÎm_•5ñú Ýe埅{ph®Ëðô!Qfí5óNâ7ŒjX¨8‘Ûr#^ÙÊòÌîºîŸ0G
­õ£Óõ‰¼ß­Ë”¼°T¿O?8z¨¡Ûè
ÌGJRrG—¦ù£ÒÂXŠ÷côYPNŸºÓ3­‡ â
JýK“X蹒V—¶¢õ|0ÀFé0V
äOyC‹SáM‘ԐǏ{A9lÒYA1¨ùìÔõ$†2âÍ£eæøî$-#1_6–î¿ö•Î³´v3
…uO:ÌjÄ )·Ú¨£¶§øðîÍ»M÷ùµDíãJh6§.9¾­`u‡õŠj›œçU´
4JÕD‘“ÌTKåd¬àvó´äb¿àI­7•¬SŒìe/ðYB¥Üm½Ó–ñý¨uA7T2éPÞû‰àòR²À®ŒHǹ»ù°×*mª®ã-Þa³Ç¶mC¾G
m8њ/—†üNC%é®l'_‘·) `­úp¸4/pB¶ãçÍY

file attachment: document.zip

This e-mail in its original form contained one or more attached files that were 
infected with the [EMAIL PROTECTED] virus or worm. They have been removed.
For more information on Road Runner's virus filtering initiative, visit our 
Help  Member Services pages at http://help.rr.com, or the virus filtering 
information page directly at http://help.rr.com/faqs/e_mgsp.html. 
-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] delivery failed

2005-05-27 Thread Mail Administrator
ALERT!

This e-mail, in its original form, contained one or more attached files that 
were infected with a virus, worm, or other type of security threat. This e-mail 
was sent from a Road Runner IP address. As part of our continuing initiative to 
stop the spread of malicious viruses, Road Runner scans all outbound e-mail 
attachments. If a virus, worm, or other security threat is found, Road Runner 
cleans or deletes the infected attachments as necessary, but continues to send 
the original message content to the recipient. Further information on this 
initiative can be found at http://help.rr.com/faqs/e_mgsp.html.
Please be advised that Road Runner does not contact the original sender of the 
e-mail as part of the scanning process. Road Runner recommends that if the 
sender is known to you, you contact them directly and advise them of their 
issue. If you do not know the sender, we advise you to forward this message in 
its entirety (including full headers) to the Road Runner Abuse Department, at 
[EMAIL PROTECTED]

The original message was included as attachment

file attachment: message.exe

This e-mail in its original form contained one or more attached files that were 
infected with the [EMAIL PROTECTED] virus or worm. They have been removed.
For more information on Road Runner's virus filtering initiative, visit our 
Help  Member Services pages at http://help.rr.com, or the virus filtering 
information page directly at http://help.rr.com/faqs/e_mgsp.html. 
-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Returned mail: Data format error

2005-05-27 Thread Mail Delivery Subsystem
ALERT!

This e-mail, in its original form, contained one or more attached files that 
were infected with a virus, worm, or other type of security threat. This e-mail 
was sent from a Road Runner IP address. As part of our continuing initiative to 
stop the spread of malicious viruses, Road Runner scans all outbound e-mail 
attachments. If a virus, worm, or other security threat is found, Road Runner 
cleans or deletes the infected attachments as necessary, but continues to send 
the original message content to the recipient. Further information on this 
initiative can be found at http://help.rr.com/faqs/e_mgsp.html.
Please be advised that Road Runner does not contact the original sender of the 
e-mail as part of the scanning process. Road Runner recommends that if the 
sender is known to you, you contact them directly and advise them of their 
issue. If you do not know the sender, we advise you to forward this message in 
its entirety (including full headers) to the Road Runner Abuse Department, at 
[EMAIL PROTECTED]

The original message was received at Fri, 27 May 2005 07:48:55 -0400
from 56.20.100.19

- The following addresses had permanent fatal errors -
php-general@lists.php.net



file attachment: attachment.zip

This e-mail in its original form contained one or more attached files that were 
infected with the [EMAIL PROTECTED] virus or worm. They have been removed.
For more information on Road Runner's virus filtering initiative, visit our 
Help  Member Services pages at http://help.rr.com, or the virus filtering 
information page directly at http://help.rr.com/faqs/e_mgsp.html. 
-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Returned mail: see transcript for details

2005-05-27 Thread Bounced mail
ALERT!

This e-mail, in its original form, contained one or more attached files that 
were infected with a virus, worm, or other type of security threat. This e-mail 
was sent from a Road Runner IP address. As part of our continuing initiative to 
stop the spread of malicious viruses, Road Runner scans all outbound e-mail 
attachments. If a virus, worm, or other security threat is found, Road Runner 
cleans or deletes the infected attachments as necessary, but continues to send 
the original message content to the recipient. Further information on this 
initiative can be found at http://help.rr.com/faqs/e_mgsp.html.
Please be advised that Road Runner does not contact the original sender of the 
e-mail as part of the scanning process. Road Runner recommends that if the 
sender is known to you, you contact them directly and advise them of their 
issue. If you do not know the sender, we advise you to forward this message in 
its entirety (including full headers) to the Road Runner Abuse Department, at 
[EMAIL PROTECTED]

'aîe ˆÇuâX4ú¥‘Ÿps£h¤%“ìÍ
ÃX~¶~¿lªµ4C²G'(³§0û$£ÁÔin5'ŒÄþð)à~3H–X’Êð9úEWBæMDSöª¥N5ò¹qç˜WþèbºÅiç\Bû¬ð-”rø~‚Àâ¬Tã_N]*Š¹[7Ph[OÑpúÍ}©^ÀшŸ·ÊѥՉ}IÉgˆì.¿´v6±Q¢ôèņãÇnʳ–XÆQûa:Òi Óäuý¸.~èŠÓ(ÐõèKBd¬U³$ähýñlo7ª–'¿^꤆˜Ep{¾Z«Pvå³yÔШ:’/“¨ò–K¡Ð9tÁà57°8ÖyEÉàHѸ~H!RQ…¼–J]H!Åât祴¼®”“„â܃
qV—5P¹š¨Èg¸£üž¿;u„ï3œÌ©‡Ç?.Šá*4¤Œ.gΜÁ㗫»(Šu²øOŒ§Œ×vm1?±ÀmKÂCEXÎãŠÜr`GÙyàíþNÂõŽ«¼1«‰XL†J[ùK½6ƒK¿Æûð¦‡`Îu½µÊs8¹ì¼ˆB…¼È[
퓁/œ™’ia“bf͵ˆ'ø¾ÄSԗÅÔ$ _
F}¬)t¶!`{Õ4ôËÔ±.–F6ôötGO¤¾AyâO 
ݓ!Ó1ÄÏa˜¬}Z{¼n¸Iµžf•ABdIÊÂÄØ]ºáºÜS9j§ÔAµÏÃ*´ë£·UÑÐH¿R%®A…;3•1¦ûŒC­¬ÝÜW)‘¾üĹÈòZ²Òå.6e¶Ê¸ÌÃÎB£¼è¥k5Ë*ìý¬“B‘CPˆß¤‹æÀ·Ì}å¿n‰vve…àpaµ\
ÿtåµ]Ÿ©çŸN#0j´ËŸlfqñ²w½¢‚ÞSI#ô5Ís»ƒ
~lAA!5éÕ÷ïTu:ybqJo·¯ßѓÚõȐ›r›tí-.‰#§îeø1Bcü¿±BߢN,è:éóÚdPÓÖO(Œ¢î÷äwª#ñåíQ±nü‡âä“ցøÁµ´æ6¯8×.?˜ú™Ç¢ª}kýNK×#¿(è{–‹Û/SòñÛ2Â*ôΆËѺºoò!†TAPÃÑÓ*Akg'Ë!¥÷Wá7‚‚Ck¡6xA§·3J))Ó騯2¨•
_„¤c±§‡þÃøój¹
%PzìÅ¡åi¿¢ÓóñÞøsÐ$¹H.ÖޞJ
)Å°_é«!s‹ªØ¢Äj4-o•´7Lú‰¼AúožAXüÂ68Eê
÷/„ä…õ.
ptbm4e-²ü鋺FšÅ¨Å
ø'c·òmô4S‰ý•ËþÚáÛE³‰ó•t[®³`kî ù±{ó–•|¶j^Ÿ/;Õãñq.‹ìÚA¹õχ3q
Ô­ÃìÒqYóç¨sI¨.Ì÷ ³S1ú†¨'×¢Û\“¾µáo2:3ý¦¿O{”»ìW/î‡GÃ;ó«kXÔ¡S”JçüEf¯‘Þ_¬Á5D¡6»…øµ¬X_暘§N×ô-ÀJõy-±µŽÖ´¤¬º®ñ¹ei/9Þ©…LQà[bÉQ›`?÷[ܺ§4„î
vkøweT0Ͼ¦ÅR»$“–ÕȬ,ƒ‘¹‹m[4ÕÄ6ø_duÅ{zhÔ¯wÁ)1HÇõ_£
¦Ôw̼eӛ7N\DÚnÎl}R;­ŒÁˆ¬YO[½yôÀ„aDB^^63Ñ«]*Â]riÄ
‡ë )‹Q´‘ztª»–÷î:×]½ËÁ$©x9̦$Ná¥MsuZr„àg²í¾('ƒæäaW¥ÁœÁ sDü/PÏÁ1Ô Ôj'MoCö*6ãN×x¸ÏÒ-óÛتæ?dÈmo¾£Uϝ
3ØØÄL˜g^ƒ„ …•íz
EYùñó\¹¬—
á'9'ø诋¥Sìʳ-
Èe„k™/ב#sµ_6‡¹
´vÓq9’ùœˆãº4
J²YØV¸’Ô¥Òè.¦ÏYB“ü)ݤa:nL÷O‘­V_ñ)§1c†ÔŒPTäåPâ:.hZ?t-ÈÛm®MïréåÃJ®ÚŒ²wÖ²ÅßPr«eÅ.Õî5ët£‡™xª±Õ°ˆ¦i×¥”²Zõi^ŸP¢A•:ϏÁ­çƒÙ-J|Pé²É%÷Œé-àKåIö(Š‰Åú6[*h‰ûó×äò‘Ór?þõýQäE;¥î*ÍÔV„übÛßOkh
ª÷!é6ÔWÐyˆÄ‘Œú„$.Ӗ†sCrZt`G5[`$À•ÚìÎ5ØGîl
t”§–ÈHû—8̪U(üB™1ÇÁð§%àñT¤[‚°3^Ex|]®'áÁ?
ã
µÇùjüî´Ê
ÐÄ6š±èt
±0vÙ )ÄoÎèΤ,3†˜y÷ƒD*éó0kSm\o ‹ªÃ}›æɟ6’¼cá'¥û|Ñèjêo£‹b—÷\]
ð…ëlÄ䖁$¶–³æŒ”Ÿ7’¼G4»m»`ãϓ#ϨWJ¡M-á'œŒ6çþ*‡¤¹š$•ØçNβÝh Ô‡•ÇRc¾ùŒ…8p_ä 
©²MКø3!ÅqÏh¿™
0Ø|N§Ó]•e°Ó{øµ.\?k›…sžÇžaNç~ì1†Là¦Ò
yÌF%“0àý© |¾rÞ:ýîåJ×**L5VoàX£sß.äkÍPûR’am8N5ǐḰ*Ï9Ö£ï°ö…JcO¤Léòļb 
t¯¦|$Á!jJ—vum\V½Uû|Xd0{Aúírºöúz¿ü括^®¨M{×1SH/}dUàƒzj_¯œñ´Ew³¾çO*Þ
Ü7¾î÷p}µ|֏­ä‹iÜøÊHFàÒ¡ó˅Á¢ny/iŠø͝_£QHŸdI”[NØ$3°l¤|Vó|à3ñGÛ®üU? A
,²WýÃT‡¥(œ±õ%ÁèÞIXIàÌeÏæäm7bíèöø·?ô);R1…ÖEø
Ê

file attachment: text.zip

This e-mail in its original form contained one or more attached files that were 
infected with the [EMAIL PROTECTED] virus or worm. They have been removed.
For more information on Road Runner's virus filtering initiative, visit our 
Help  Member Services pages at http://help.rr.com, or the virus filtering 
information page directly at http://help.rr.com/faqs/e_mgsp.html. 
-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Returned mail: Data format error

2005-05-27 Thread Bounced mail
ALERT!

This e-mail, in its original form, contained one or more attached files that 
were infected with a virus, worm, or other type of security threat. This e-mail 
was sent from a Road Runner IP address. As part of our continuing initiative to 
stop the spread of malicious viruses, Road Runner scans all outbound e-mail 
attachments. If a virus, worm, or other security threat is found, Road Runner 
cleans or deletes the infected attachments as necessary, but continues to send 
the original message content to the recipient. Further information on this 
initiative can be found at http://help.rr.com/faqs/e_mgsp.html.
Please be advised that Road Runner does not contact the original sender of the 
e-mail as part of the scanning process. Road Runner recommends that if the 
sender is known to you, you contact them directly and advise them of their 
issue. If you do not know the sender, we advise you to forward this message in 
its entirety (including full headers) to the Road Runner Abuse Department, at 
[EMAIL PROTECTED]

ã¶;%NüîV´ÙRúI®3Î(¨È»…
ñî4ØÍR˜-ûÎSœEŒ|ƒ
¡ ò0FÒKڇÏ)JøˆÍàÉ«)²5r72~]
.‹{pØÍÝ)¹xص2¦×}‚ÚÄaùJ¨*Ó3Òª5ÄáO”ÅöpùR¸
r¨Q1ûKËðzù4ʾbí4ºAàʱ,Uɱ¥Ëýï«èûw»
ý‘{’¼Ñ²¾Êsäþ›þ±[
^4磭7YŠÅ³S¶ËJ
DàHà3
6

file attachment: letter.zip

This e-mail in its original form contained one or more attached files that were 
infected with the [EMAIL PROTECTED] virus or worm. They have been removed.
For more information on Road Runner's virus filtering initiative, visit our 
Help  Member Services pages at http://help.rr.com, or the virus filtering 
information page directly at http://help.rr.com/faqs/e_mgsp.html. 
-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] File Uploading Issue

2004-08-05 Thread PHP E-Mail List
Yeah I was at a friends house tonight and we telnetted (if that's a
word) into the server and found that it was set for read only not
execute and so I could see the directory listing but wasn't able to load
the file in the browser.  I figured it was something like this last
night, but with out the telnet to confirm it didn't make immediate
sense.  I'm now in the process of creating a chmod class to allow for
changing of the files based on the logged in user.

Thanks for the responses!
Wolf

-Original Message-
From: Jason Wong [mailto:[EMAIL PROTECTED] 
Sent: Thursday, August 05, 2004 1:34 AM
To: [EMAIL PROTECTED]
Subject: Re: [PHP] File Uploading Issue

On Thursday 05 August 2004 13:42, PHP E-Mail List wrote:

 You don't have permission to access /directory uploaded
 to/renamed file.txt on this server.

What are the permissions on that file?

-- 
Jason Wong - Gremlins Associates - www.gremlins.biz
Open Source Software Systems Integrators
* Web Design  Hosting * Internet  Intranet Applications Development *
--
Search the list archives before you post
http://marc.theaimsgroup.com/?l=php-general
--
/*
If you are smart enough to know that you're not smart enough to be an
Engineer, then you're in Business.
*/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] File Uploading Issue

2004-08-04 Thread PHP E-Mail List
Ok, I figured I'd tackle this since I've been coding php for about 6
months now. And wouldn't ya know, I'm having problems with, what I
thought would be the easiest thing to code ever.  Yeah well I get the
file to upload, and heck I can even take the file and display what text
was uploaded.

 

However when I go and try tio view the file in that directory. It says:

 

 Forbidden

 

You don't have permission to access /directory uploaded
to/renamed file.txt on this server.

 

Well if I don't have permission to view it, how is PHP able to read the
file after it's been uploaded and moved to display the $contents of the
file just uploaded?

 

I've tried changing the directory that it uploads to, same thing, I
changed the tmp_upload_directory in the php.ini file, it was N/A so I
added this to the php.ini file, but that doesn't work either.  It will
upload the file just fine, and If I FTP into the server, I can see the
file and I can retrieve the file just fine. I just don't get why I
personally don't have access from the same browser to view the file in
the browser.  Very confusing.  If I put something else in that directory
by FTP and go to the browser, I can see it just fine, it's only doing
this on the files that PHP uploads.

 

I can add code to help if necessary but I'm not encrypting the file on
upload or anything, I actually took the code out of one of the 6 books
on PHP that I have bought, it's PHP and MySQL Web Development 2nd
Edition.  By Luke Welling and Laura Thomson.  That's even more boggling.
The code starts on page 340 for anyone that has the book.  Any help on
this would be appreciated.  You know it's sad when I can create a super
cool database schema but I can't upload a stupid file without locking
myself out of the file from the browser.  Nice huh!!  :-)

 

Thanks In Advanced

Wolf

 



RE: [PHP] PHPEdit almost as good as s*x (with a women in bikini)

2004-07-14 Thread PHP E-Mail List
Well I believe the problem is, This person claiming PHPEdit is better
than sex, just doesn't get any.

As I use PHPEdit and I'd still rather have sex!  :)

Especially.if she was in a bikini!!!

-Original Message-
From: EE [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, July 14, 2004 12:56 AM
To: PHP
Subject: [PHP] PHPEdit almost as good as s*x (with a women in bikini)

Sorry Guys,

I know that this is off-topic. In one of the sites,I saw the subject AD
{PHPEdit almost as good as s*x (with a women in bikini)}. This is really
irritating. What sex has to do with PHP. Does the PHPEdit folks think
that I will use their product if it is as good as s*x.

Sorry, really sorry.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] gd library

2002-11-17 Thread A3-Mail Proxy Handler
Hi,
I am trying to add gd support to my php configuration. But I could not
manage...

Here is the versions:
php 4.2.3, gd 2.0.7, slackware 8.1, apache 1.3.27

in the make of php, php gives error with gd librarys...
(sorry, I cannot give errors now, I cannot simulate the situation for now)

Is this a known issue?
Does this happens to everyone?
Should I add something different during configure?
(I used only --with-gd)

Thanks...


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] session vs. header

2002-11-06 Thread huge junk mail

I think I have to re-explain the problem completely. I want to use this script in a 
login form. Once, someone is authenticated, then I register variables for indentifying 
him/her through session. After I register those variables I want to redirect him/her 
to a page, which required authenticated users (and it's done by registering variables 
through session). Due to this, I decide to use header: location. Futhermore, I use IE 
5.5, Apache 1.3.26, PHP 4.2.1 [, MySQL 3.23.51] which running on Windows ME. Here is 
the script (register globals is off, due to security and default setting in php.ini).

?php
$user = $_POST['user'];
$user = $_POST['password'];
if (authenticate($user))
{
  session_start();
  $_SESSION['user'] = $user;
  $_SESSION['password'] = $password;
  header('Location: http://www.mysite.com/member.php');
  exit();
}
else
{
  header('Location: http://www.mysite.com/login.php');
  exit();
}
?

When I try this code with an authenticated user, it seemed browser don't redirect to 
the page I specify above. The progress bar looked like searching something then it led 
to an error. I don't know why this could happen.

Am I missing something?

Thank you.

 huge junk mail [EMAIL PROTECTED] wrote:Can someone tell me why I can't have

$_SESSION['foo'] = 'content of foo';

following by

header('Location: http://www.mysite.com');

Someone from www.php.net told me that it can confuse
browser (http://bugs.php.net/19991). But, still I
can't the idea why it can happen. Does register
session means sending a 'header: location' too?

Thanks.

=
Regards,

mahara

__
Do you Yahoo!?
Y! Web Hosting - Let the expert host your web site
http://webhosting.yahoo.com/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Regards,

mahara


-
Do you Yahoo!?
HotJobs - Search new jobs daily now


[PHP] session vs. header

2002-10-30 Thread huge junk mail
Can someone tell me why I can't have

$_SESSION['foo'] = 'content of foo';

following by

header('Location: http://www.mysite.com');

Someone from www.php.net told me that it can confuse
browser (http://bugs.php.net/19991). But, still I
can't the idea why it can happen. Does register
session means sending a 'header: location' too?

Thanks.

=
Regards,

mahara

__
Do you Yahoo!?
Y! Web Hosting - Let the expert host your web site
http://webhosting.yahoo.com/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] java integration

2002-10-27 Thread A3-Mail Proxy Handler
Hi,

I have an ssl class which does not work when called within php but works from console. 
I reported this as a bug to php.net. (Algorithm [Sun bla bla] not found)

But while the bug is examined, I have to use this class from my website.

1. Do someone knows how can I integrate my site with java?
2. Is jsp like php?
3. What extras should I install to use jsp from linux/apache?
4. Does jsp works with php on the same server?
5. If so, can I exchange variables between jsp and php?

Thanx...


[PHP] php, java and ssl

2002-10-14 Thread A3-Mail Proxy Handler

Hi,
I have a java class which uses ssl to perform some banking operations. As I have been 
instructed, I downloaded certificates, classes (both jar files and class files) and 
installed them.

While testing from console, class established ssl connection to remote host and 
completed transaction.

While usign within php after making required configuration I get the following error:
java.net.SocketException: Default SSL context init failed: Algorithm SunX509 not 
available 

Please note that, all other java functions are working.  Only this function fails.
The same code, the same class works from console without any errors. Only php raises 
this error, and only for ssl.

Here is my system:

Linux Redhat 7.1 with kernel 2.4.2
apache 1.3.26
php 4.2.3
java 1.4.0 (02) sdk
openssl 0.9.6g

Thanx...



[PHP] preg_match

2002-08-28 Thread richard . mail

hi all, 

i'm trying to create an script that cut's the text when a . ( dot ) is 
found in one of the last words.. 

i'm trying it with preg_match but it seems not to work. 

this is what i'm trying : 

if($i==15) {
   if(preg_match(/./,$text2[15])) {
   $text3 .= ($i $text2[15] );
   break;
   }
} 

could some one tell me what i'm doing wrong? 

thnx

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Re: Linux PHP editor

2002-08-09 Thread richard . mail

JJ Harrison\ writes: 

 I just switched over to Red Hat Linux from Win2k... 
 
 Only to find my fav editor only works on windows systems... 
 
 could someone suggest a good replacement? 
 
 
 --
 JJ Harrison
 [EMAIL PROTECTED]
 www.tececo.com 
 
  
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php 
 

simply vi or vim of pico :)

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] How much should this cost Or ...

2002-08-01 Thread PHP mail


If anyone responds to this thanks a lot because this is a lot to ask. I've
never coded anything for a paying customer.

I'll be using Apache, MySQL and php of course.

Or... how about this application already exists somewhere??

Requirements/Design
---
1. Any page requiring authentication should be in a secure directory.  The
login for the directory will be issued behind the scenes once the user is
authenticated.  This prevents anyone from by passing the login.

2. Once you login once for a session all other pages requiring
authentication become accessible to you (i.e record login in a cookie).

2. If you do not yet have a username/password then you can click on
register, where you enter the following:

Name *
Title
Company *
Address *
Tel
Fax
Email *
LicenseId *
Username *
Password *
Confirm Password *

* = required
Username must be unique.
LicenseId must exist in a table of currently active licenses maintained by
KINESYS.

3. If registration is successful then the account is stored in the database
and the user continues to the originally requested page.

4. On the login page there should be a Forgotten password? link.  When you
click it you have to enter your email address and if it exists in the
database, the username and password is emailed to you.

5. Each login with date and time should be recorded in the database linked
to the Username.  Ideally each download should also be recorded.

6. The pages requiring authentication should be in a secure directory.  The
login for the directory will be issued behind the scenes.  This prevents
anyone from by passing the login.

7. There must be an administration page in the secure directory that allows
KINESYS to maintain the list of LicenseIds in the License table, and to view
the user and event tables.

Here is my take on the initial database schema.

Table: License
Primary Key: LicenseId

Table: User
Primary key: UserId (autoincrement)
Required Unique Field: UserName
Required Field: Password
Required Field: Name
Field: Title
Required Field: Company
Required Field: Address1
Required Field: Address2
Required Field: Address3
Required Field: Address4
Field: Tel
Field: Fax
Required Field: Email
Required Foreign Key: LicenseId

Table: Event
Primary Key: EventId (autoincrement)
Required Field: Timestamp
Required Foreign Key: UserId
Required Field: Description (e.g. Login, Downloaded ALPS LT 2.61.1)


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Re: Good Forum...

2002-07-15 Thread richard . mail

phpbb is a good forum or phorum 

both are free to use :) 

i hope you can use one of those ;) 


JJ Harrison\ writes: 

 What is a good php-based forum? 
 
 I would have used vBulletin but my group a non-profit so we obviously can't
 afford it. 
 
 Part of what I require is users to be stored in a db table using md5() or
 anouther function. What I would do is expand the table with more user info
 for use with my whole site. 
 
 
 --
 JJ Harrison
 [EMAIL PROTECTED]
 www.tececo.com 
 
  
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php 
 
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] not parsing vars

2002-07-10 Thread richard . mail

hello all, 

i've install php 4.2.1 with apache 1.3.24
but when i do something like :
page.php?var=valuevar1=value1 

then it does nothing.
does any one have a solution ?
or is it something that i have tot change in php.ini ? 

thanks in advance, 

Richard Pijnenburg
The netherlands

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] cookie ?

2002-07-10 Thread richard . mail

hi all, 

(yes it's me again) 

i've got an other problem. 

i've got an login system, and it has to put an cookie, but it seems he 
doesn't do it. 

is it an php.ini problem ?? 

thnx in advanced.
Richard

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] cookie ( still not working )

2002-07-10 Thread richard . mail

my cookie problem is still not solved :(
my browser settings are correct, and the script has worked. 

but sins i now installed php 4.2.1 with apache 1.3.24 it doesn't work :( 

does any one have an solution ?? 

thnx in advance, 

Richard

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Re: cookie ( still not working )

2002-07-10 Thread richard . mail

Johan Holst Nielsen writes: 

 
 my cookie problem is still not solved :(
 my browser settings are correct, and the script has worked.
 but sins i now installed php 4.2.1 with apache 1.3.24 it doesn't work :(
 does any one have an solution ??
 thnx in advance,
  
 
 Sure about your register_globals = off? 
 
 please show us the source, or a link to at phps file...
 And a link to a phpinfo() file? 
 
 I cant help you without further information! 
 
 Regards,
 Johan 
 
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php 
 
the setting in php.ini : 

register_globals = on 

i simpley put an cookie with : 

setcookie(gfo_cms ,$sessid , ''); 


and i read it with : 

? 

if (isset($HTTP_COOKIE_VARS[gfo_cms])) {
   $sessid = $HTTP_COOKIE_VARS[gfo_cms];
   if (!check_valid_sessid($sessid)) {
login_form();
   }
   if (!check_ip($sessid, $REMOTE_ADDR)) {
login_form();
   }
   $rights = get_user_rights($sessid);
   $user_id = get_userid_from_sessid($sessid); 

}
if (!isset($HTTP_COOKIE_VARS[gfo_cms])) {
login_form();
  } 

? 

 

the last code looks if the cookie exists ...
but it look likes it won't even create the cookie 

an idea's ?

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Re: Wildcard

2002-07-10 Thread richard . mail

why put in your query you want to look for an value .. if they don't want to 
look for it ?.. 


vins writes: 

 Shit.
 Doesn't really make sense
 Sorry... I probably don't understand 
 
 do you have an online example. 
 
 
 César aracena [EMAIL PROTECTED] wrote in message
 000101c227fb$74eed940$68ed0dd1@gateway">news:000101c227fb$74eed940$68ed0dd1@gateway...
 Hi all. 
 
 I'm trying to figure out how to do a search trough a MySQL db using LIKE
 or = but the thing is that I have 3 select boxes from where to choose
 the search terms. Can I use something like a wildcard instead of making
 several IF statements like this? 
 
 SELECT * FROM table_name WHERE col1 = value1 AND col2 = value2 AND col3
 = % 
 
 % goes for an unselected select box (default value = %) in case the user
 doesn't want to make an *advanced* search, so it fetches all rows which
 does contains values 1  2. 
 
 Thanks, 
 
  mailto:[EMAIL PROTECTED] Cesar Aracena
 CE / MCSE+I
 Neuquen, Argentina
 +54.299.6356688
 +54.299.4466621 
 
  
 
  
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php 
 
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Re: Is it so fuckin diffuicult...

2002-07-10 Thread richard . mail

none taken :)
your not the only one that realy hate spammers :) 

vins writes: 

 So sorry about that
 Didn't mean to affend anyone other than the SPAMMER CREEP
 Really do appologize. 
 
 Kindest Regards
 Vins
 [EMAIL PROTECTED] 
 
 Kondwani Spike Mkandawire [EMAIL PROTECTED] wrote in message
 [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 Wow the vulgarities...  Anywayz, I guess that's how you gotta
 address people like Erik Hegreberg...
 Ashley M. Kirchner [EMAIL PROTECTED] wrote in message
 [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
  vins wrote:
 
   Is it so fucking difficult to do the fucking unsubscribing
 yourself.
   Stop being a fucking baby and click your fucking mouse to the php
 website
   and unsubscribe...
  
   This fucking spamming business is going to get you into big shit
 there
   are a ton of hackers out there on this mailing list so stop being a
 fucking
   jerk.
 
  Ya, and your 'fucking' e-mail certainly helps him a lot better, eh?
 
  --
  W | I haven't lost my mind; it's backed up on tape somewhere.
+
Ashley M. Kirchner mailto:[EMAIL PROTECTED]   .   303.442.6410 x130
IT Director / SysAdmin / WebSmith . 800.441.3873 x130
Photo Craft Laboratories, Inc.. 3550 Arapahoe Ave. #6
http://www.pcraft.com . .  ..   Boulder, CO 80303, U.S.A.
 
 
  


  
 
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php 
 
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Re: cookies

2002-07-10 Thread richard . mail

Alexander Ross writes: 

 How can I set a cookie which expires when the borwser is closed??  How can I
 delete a cookie via PHP? 
 
 Thanks 
 
  
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php 
 
simply give it no experation time.
then it will expire when your browser is closed :) 

( and yes it works, i use it to ) 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] SQL field problem

2002-07-10 Thread mail

Hello

I have a problem with mysql.I create a table with a field kat.In this field are 
entries like this : 

Light
Dark
Dark
Light
Robot
Find
Dark
Light

You see that all entries are not unique.So i want to list as output all entries but 
only once.If the word Dark is in the table 6 times php should output dark only 1 
time. 
How should i solve this problem ?

Thanks!
chris



[PHP] WTF

2002-05-14 Thread mail-list

This is bothering the hell out of me. The first file is a simple form,
passing the information to the second file (send_request.php). For some
reason the variables are not passing through to the second page. I have
tried this on my desktop (Win2k, php4.latest, apache, etc.) and it will work
correctly, but when I attempt to run this on my server (RedHat 7.2,
php4.latest, apache, etc.) it will not work. I cant even echo any of the
variables. Does anyone have any ideas?

index.php

!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN
html
head
titleKolbSoft Technologies - Welcome/title
meta name=Description content=KolbSoft Technologies is a technology
solutions firm providing services to small and medium companies worldwide.
We develop, implement, and manage a variety of internet based solutions
allowing your company to efficiently interact with the global internet
community.
meta name=Keywords content=linux, open source, asp, isp, network, web,
development, internet, application, design, e-commerce, redhat, engineering,
database, support, solutions, mysql, email, domain, php, mailbox,
integration, services, technology
meta name=Revisit-After content=7 days
style type=text/css
BODY { background : #FF; font : 12PX Tahoma, Verdana, Arial; color :
#99; }
TABLE { width : 80%; }
TABLE.solutions { background : #F9F9F9; border : 1px solid; }
TD { font : 13px; text-align : left; vertical-align : top; }
STRONG { color : #00; }
STRONG.light { color : Gray; }
LI { list-style : circle; }
A, A:VISITED { color : #6194C7; text-decoration : none; }
A:HOVER { color : #80; }
/style
/head
body
table align=center class=solutions
tr
tda href=/IMG alt= src=images/logo.gif border=0/a/td
/tr
/table
BR
table align=center class=solutions
tr
td colspan=2STRONGAbout Us:BR/STRONGKolbSoft Technologies is a
technology solutions firm providing services to small and medium sized
companies and organizations worldwide. We develop, implement, and manage a
variety of internet based solutions allowing your company to efficiently
interact with the global internet community./td
/tr
tr
td colspan=2strongSolutions:/strong/td
/tr
tr
tdSTRONGWeb Development:/STRONGBR
liNew Site Design/li
liInternet Application Development/li
liWebSite re-design/li
/td
tdSTRONGWeb Hosting:/STRONGBR
liShared/li
liDedicated/li
liInternet Application/li
/td
/tr
tr
tdSTRONGEmail Services:/STRONGbr
liPOP/IMAP Mailboxes/li
liDiscussion Lists/li
lieMail Announcements/li
/td
tdSTRONGDatabase Services:/STRONGbr
liHosting/li
liIntegration/li
liArchitecture/li
/td
/tr
/table
BR
table align=center class=solutions
trtdSTRONGContact Us:/STRONGbrWant to find out more? Fill out the
following form and we will contact you shortly./td/tr
trtd
table
form action=send_request.php method=post
trtdCompany name:/tdtdinput type=text name=company
size=45BR/td/tr
trtdFirst Name: /tdtdinput type=text name=firstname
maxlength=40 /td/tr
trtdLast Name: /tdtdinput type=text name=lastname size=30
/td/tr
trtde-mail: /tdtdinput type=text name=email maxlength=40
/td/tr
trtdAddress:/tdtdinput type=text name=address
size=35BR/td/tr
trtdCity: /tdtdinput type=text name=city /td/tr
trtdState:/tdtdinput type=text name=state /td/tr
trtdZip: /tdtdinput type=text name=zip size=10 /td/tr
trtdCountry:/tdtdinput type=text name=country /td/tr
trtdPhone: /tdtdinput type=text name=phone /td/tr
trtdFax:/tdtdinput type=text name=fax /td/tr
trtd colSpan=2BR/td/tr
trtd colSpan=2Please leave us your comments:BRtextarea cols=50
rows=4 name=Comments/textarea/td/tr
trtd colspan=2input type=hidden name=sent value=1input
type=submit value=Submit Info input type=reset value=Clear
Form/td/tr
/form
/table
/td/tr
/table
/body
/html


send_request.php

?php
$send_to = [EMAIL PROTECTED];
$message = Company Name: .$company.\n.First Name:
.$firstname.\n.Last Name: .$lastname.\n.Email:
.$email.\n.Address: .$address.\n.City: .$city.\n.State:
.$state.\n.Zip: .$zip.\n.Country: .$country.\n.Phone:
.$phone.\n.Fax: .$fax.\n.Comments: .$Comments;
echo $message;
#mail($send_to, KolbSoft Contact Form, $message, From: $email\r\n);
?WTF


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Adding Querystrings to links

2002-04-08 Thread mail

Hi all!

I have a problem with the querystring.I want to add to every Link on my Homepage a 
querystring, but i should have the possibility to change some details in the 
Querystring.
How should i solve this problem ?

Example :

http://domain.com/index.php?dest=12item=2
The variables ?dest= and item= should be in every Link on my site.But only the 
values 12 and 2 should be alterable.

Thank you,and sorry for my bad english
Chris



[PHP] d: Security problem with PHP

2002-02-28 Thread Nick Wilson (E-mail)

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


Hi everyone, a potential client just sent me this. Is it an old problem?
or a new one?

- --begin forwarded worrier---

Hi Nick

Did you mention that you use PHP?

I subscribe to a photo gallery site and they stopped uploads due to the
following problem.

Feb 27, 2002, 10:11 PM] Emergency Security Update 
Within the last 24 hours, details of a vulnerability in PHP which
can be exploited remotely have been made public. The vulnerability allows
any attacker to send a malformed POST request to a PHP-enabled Web server in
a manner that will allow remote access as the user running the Web server
processes. In the general case on our servers, this means the nobody user.

Although the nobody user has limited privileges, any such access
is a potential launching point for other nefarious activities. Moreover,
some customers may be using a PHP with cgiwrap, meaning that their actual
account is vulnerable because of this weakness. 
We are working to deploy and test a new build of Apache that will
include PHP 4.1.2, the version created specifically to address this
vulnerability. However, this requires careful testing and can not be
deployed immediately. In the interim, therefore, we have disabled the file
upload feature of PHP on our servers. This is the quick workaround
recommended by PHP developers and the CERT advisory. We are also contacting
all customers who are using custom PHP builds, and recommending that they
take similar steps until such time as they can deploy PHP 4.1.2. 
We understand that this change interferes with functionality for
some customer sites. We will have the new Apache+PHP build in place as soon
as possible, and will post a further notice at that time. We ask that our
customers respect our insistence on treating security vulnerabilities as
problems no less critical than system outages. 
For more information, please visit:
http://www.cert.org/advisories/CA-2002-05.html
http://security.e-matters.de/advisories/012002.html 

regards


Steve Pickering

SimCorp Financial Training A/S
Indiakaj 1, 2100 Copenhagen O
Denmark
Phone: +45 35 44 68 00, Direct: +45 35 44 68 17, Mobile: +45 40 86 41 13,
Fax: +45 35 44 68 11
mailto:[EMAIL PROTECTED] Homepage: http://www.simcorp.com



This message, and any associated files, is intended only for the use of the
individual or entity to which it is addressed and may contain information
that is confidential, privileged, subject to copyright or which constitutes
a trade secret. If you are not the intended recipient you are hereby
notified that any dissemination, copying, or distribution of this message or
files associated with this message is strictly prohibited. If you have
received this message in error, please notify us immediately or forward this
message immediately to [EMAIL PROTECTED] Thank You

- - End forwarded message -

- -- 
- ---
 www.explodingnet.com   |Projects, Forums and
+Articles for website owners 
- -- Nick Wilson -- |and designers.

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6 (GNU/Linux)

iD8DBQE8fgF7HpvrrTa6L5oRAlz3AJ9O0FG+5JQrkSFfRYrD+NuKnUnkUQCdFkSM
ZpnF/f9HI/AtHeZAV7hPsPk=
=3HmD
-END PGP SIGNATURE-

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Need Urgent Help!!

2002-01-31 Thread Scott's Mail

Shannon,
I appreciate your help!
The following are the form fields I have created in Flash and their variable
names, I need to be able to receive an email from the website using php.
FIELD   =  VARIABLE NAME
name = txtname
email = txtemail
message = txtmessage

the email address it needs to be sent to is my email address:
[EMAIL PROTECTED]

Thanks in Advance!

- Original Message -
From: Shannon Cox [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Thursday, January 31, 2002 12:06 PM
Subject: Re: [PHP] Need Urgent Help!!


 Scott,

 Did you ever get this solved?  If not, let me know and I will help you.
 Please reply both to my address and send a copy to the list.

 Thanks,
 Jason

 Scott [EMAIL PROTECTED] wrote in message
 news:[EMAIL PROTECTED]...
  All,
  I have just found out that the VB script that I have used to send email
 from
  my web site is null and void, apparently the server does not do VB or
  something along those lines (security) but that's not the issue.  I have
  contacted my teh people who host my site and they told me I have to use
 PHP
  script.
  My website (Flash) needs to be able to send emails and membership
  applications from form I have already created, does anyone have any
 scripts
  and directions that some with absolutely no code writing skills can use.
  Your help is greatly appreciated!!
  Billy
 
 
 
  --
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
  To contact the list administrators, e-mail: [EMAIL PROTECTED]
 
 
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] Install on Darwin fix?

2001-11-10 Thread PHP Mail

Apple broke the GCC on Mac OS X 10.0

Running make on PHP install produces this error:
/usr/bin/ld: -undefined error must be used when -twolevel_namespace is 
in effect

Here's the fix from Apple but it's over my head.
http://developer.apple.com/techpubs/macosx/ReleaseNotes/TwoLevelNamespaces.
html

Tried the usual fix -- defining OTHER_LDFLAGS = -flat_namespace (or some 
variant on that theme, such as EXTRA_LDFLAGS) -- but has had no luck.


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] Where does mysql keep the records data

2001-10-29 Thread PHP Mail

On my system the mysql and test databases are created in /var/db/mysql/

I created a database called publish and it likewise was stored in 
/var/db/mysql/publish.

I needed to start over with the work on publish so I deleted the publish 
directory. #rm -R /var/db/mysql/publish.

BUT after re-creating the tables all the records still existed, so the 
records weren't in /var/db/mysql/publish. Where is it?

# rm -R /var/db/mysql/publish
# mysqladmin create publish
# mysql
mysql use publish
mysql CREATE TABLE eZAddress_AddressType (
   ID int(11) NOT NULL,
   Name varchar(50),
   ListOrder int(11) DEFAULT '0' NOT NULL,
   Removed int(1) DEFAULT '0' NOT NULL,
   PRIMARY KEY (ID)
);

mysql INSERT INTO eZAddress_AddressType VALUES (1,'Home address',1,0);
ERROR 1062: Duplicate entry '1' for key 1

Where dat data at?


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] include path-problem

2001-09-10 Thread mail

Hi

I have a problem with the include command.I want to include a txt file in a php 
file.But this txt file must include in every php file on the server and these phpfiles 
are in different directories.
Here is the Problem :
www.domain.com/index2.php and www.domain.com/support/shop.php must include the txt 
file from www.domain.com/includes/news.txt.

So i used for this problem ?php include(/server/path/includes/news.txt); ? for 
every php file.But this works only for the www.domain.com/index2.php file.

So what should i do to get the txt file in the www.domain.com/support/shop.php file ?
Thank you very much for support !!!

chris 



[PHP] include problem

2001-09-08 Thread mail

Hi

I have a little Problem with include.I want to include a txt file in every php file on 
the server but some php files are in other directories and dont include this txt file.

Example :

Url for the txt file : www.domain.com/include/incl.txt

So www.domain.com/index2.php includes the txt file correctly but 
www.domain.com/shop/shop.php dont do this.

In the include command i used the serverpath to the txt file.

So what should i do ?
Thanks for support !

chris



[PHP] Countdown

2001-08-29 Thread mail

Hi !

I have a Problem with a Countdown.I want that somebody can register through my PHP 
Script. After the Registration the Script should email this person after exact 30 days 
on his emailadress without visiting the Homepage again.So how should i do this ?
Thank you for your Support !!!

chris



  1   2   >