[PHP] Re: Problem uploading large files via PHP (20+ MB)

2004-03-21 Thread Kim Steinhaug
Im not completely sure, but have you gone throught the settings in the
IIS server aswell? I know altleast for the CGI IIS has its own
timeout which overrides the php.ini file. It could be something here
aswell, but you probably have done this.

Kim Steinhaug

"Schonrock III" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> All,
>
> I am attempting to upload a large file via PHP to a web server running
> Windows XP Pro IIS 5.1 and I am having some problems.  I have been trying
to
> find the right combination of settings in the php.ini file and elsewhere
to
> get large files to upload properly, but I keep getting a DNS error in
> Internet Explorer 6 that shows up after about 12MB or 12.5MB of a 21.7MB
> file has been transferred.
>
> When I looked at the IIS website connection timeout it was set at 900
> seconds.  I have tried many different variations in the php.ini settings
> file with little success.  I have tried using the "8M" format and also the
> full out Byte count for size fields in the php.ini file.  I can upload
files
> that are smaller that 10 MB (I tested with one that was 9MB earlier) with
no
> problem.  Here are my most recent relevant settings in my php.ini file
(that
> I know of):
>
>   max_execution_time = 3600
>   max_input_time = 3600
>   memory_limit = 104857600
>   post_max_size = 104857600
>   upload_max_filesize = 104857600
>
> Does anyone have any ideas?  Am I missing something else?  If you need any
> more information that I left out please let me know.  My code for the php
> files is located below this message.  Any help is greatly appreciated!
>
> Thanks,
> Keith
>
> -Sending php file:
>
> 
> 
> 
> This is a test document
> 
> 
>  Send this file: 
>  
> 
> 
> 
>
> -Receiving php file:
>
> 
> 
>  $uploaddir = 'c:\\new\\out\\';
> $uploadfile = $uploaddir . $_FILES['userfile']['name'];
>
> print "";
> if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile)) {
>print "File is valid, and was successfully uploaded. ";
>print "Here's some more debugging info:\n";
>print_r($_FILES);
> } else {
>print "Possible file upload attack!  Here's some debugging info:\n";
>print_r($_FILES);
> }
> print "";
>
> ?>
> 
> 

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



Re: [PHP] Problem uploading large files via PHP (20+ MB)

2004-03-19 Thread Schonrock III, Keith H
Well, I tried the process with Mozilla and the transfer was blazing fast
compared to IE and it completed successfully with no DNS errors.  IE is very
slow and consistently gets those DNS errors.  I did turn on logging and
found that this error is being produced whenever the DNS error shows up:

  The script started from the URL '/php/upload2.php' with parameters '' has
not responded within the configured timeout period.  The HTTP server is
terminating the script.

Since I need to get IE working with this process I guess my next question is
this:  In IIS 5.1 on Windows XP Pro, how do you increase the "configured
timeout period"?  As I stated before, when I go to the Control
Panels->Administrative Tools->Internet Information Services and look at the
Properties for my Default website the connection timeout is set to "900"
seconds.

Thanks,
Keith

>Vincent DUPONT wrote:
>
>>DNS error seems to indicate that you have a connection problem, not a
storage or file size >restriction problem. 
>>Maybe the IP connection is interrupted. ..
>>Do you have the same problem when running on Localhost?
>>  
>>
>IE more often than not shows DNS failure message regardless of the 
>actual error.
>
>>  max_execution_time = 3600
>>  max_input_time = 3600
>>  memory_limit = 104857600
>>  post_max_size = 104857600
>>  upload_max_filesize = 104857600
>>
>>Does anyone have any ideas?  Am I missing something else?  If you need any
>>more information that I left out please let me know.  My code for the php
>>files is located below this message.  Any help is greatly appreciated!
>>  
>>
>Try with mozilla it will give you a better error message. Enable logging 
>if you have not already done so and take a look at the log file that 
>will give you a better idea about what exactly is going wrong.
>
>-- 
>Raditha Dissanayake.

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



Re: [PHP] Problem uploading large files via PHP (20+ MB)

2004-03-19 Thread Raditha Dissanayake
Vincent DUPONT wrote:

DNS error seems to indicate that you have a connection problem, not a storage or file size restriction problem. 
Maybe the IP connection is interrupted. ..
Do you have the same problem when running on Localhost?
 

IE more often than not shows DNS failure message regardless of the 
actual error.

 max_execution_time = 3600
 max_input_time = 3600
 memory_limit = 104857600
 post_max_size = 104857600
 upload_max_filesize = 104857600
Does anyone have any ideas?  Am I missing something else?  If you need any
more information that I left out please let me know.  My code for the php
files is located below this message.  Any help is greatly appreciated!
 

Try with mozilla it will give you a better error message. Enable logging 
if you have not already done so and take a look at the log file that 
will give you a better idea about what exactly is going wrong.



--
Raditha Dissanayake.
---
http://www.radinks.com/upload/ 
Drag and Drop Upload thousands of files and folders in a single
transfer.  (HTTP or FTP) 

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


RE: [PHP] Problem uploading large files via PHP (20+ MB)

2004-03-19 Thread Vincent DUPONT
DNS error seems to indicate that you have a connection problem, not a storage or file 
size restriction problem. 
Maybe the IP connection is interrupted. ..
Do you have the same problem when running on Localhost?

Vincent
-Original Message-
From: Schonrock III, Keith H [mailto:[EMAIL PROTECTED]
Sent: vendredi 19 mars 2004 15:48
To: [EMAIL PROTECTED]
Subject: [PHP] Problem uploading large files via PHP (20+ MB)


All,

I am attempting to upload a large file via PHP to a web server running
Windows XP Pro IIS 5.1 and I am having some problems.  I have been trying to
find the right combination of settings in the php.ini file and elsewhere to
get large files to upload properly, but I keep getting a DNS error in
Internet Explorer 6 that shows up after about 12MB or 12.5MB of a 21.7MB
file has been transferred.  

When I looked at the IIS website connection timeout it was set at 900
seconds.  I have tried many different variations in the php.ini settings
file with little success.  I have tried using the "8M" format and also the
full out Byte count for size fields in the php.ini file.  I can upload files
that are smaller that 10 MB (I tested with one that was 9MB earlier) with no
problem.  Here are my most recent relevant settings in my php.ini file (that
I know of):

  max_execution_time = 3600
  max_input_time = 3600
  memory_limit = 104857600
  post_max_size = 104857600
  upload_max_filesize = 104857600

Does anyone have any ideas?  Am I missing something else?  If you need any
more information that I left out please let me know.  My code for the php
files is located below this message.  Any help is greatly appreciated!

Thanks,
Keith

-Sending php file:




This is a test document


 Send this file: 
 




-Receiving php file:



";
if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile)) {
   print "File is valid, and was successfully uploaded. ";
   print "Here's some more debugging info:\n";
   print_r($_FILES);
} else {
   print "Possible file upload attack!  Here's some debugging info:\n";
   print_r($_FILES);
}
print "";

?> 



-- 
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] Problem uploading large files via PHP (20+ MB)

2004-03-19 Thread Schonrock III, Keith H
All,

I am attempting to upload a large file via PHP to a web server running
Windows XP Pro IIS 5.1 and I am having some problems.  I have been trying to
find the right combination of settings in the php.ini file and elsewhere to
get large files to upload properly, but I keep getting a DNS error in
Internet Explorer 6 that shows up after about 12MB or 12.5MB of a 21.7MB
file has been transferred.  

When I looked at the IIS website connection timeout it was set at 900
seconds.  I have tried many different variations in the php.ini settings
file with little success.  I have tried using the "8M" format and also the
full out Byte count for size fields in the php.ini file.  I can upload files
that are smaller that 10 MB (I tested with one that was 9MB earlier) with no
problem.  Here are my most recent relevant settings in my php.ini file (that
I know of):

  max_execution_time = 3600
  max_input_time = 3600
  memory_limit = 104857600
  post_max_size = 104857600
  upload_max_filesize = 104857600

Does anyone have any ideas?  Am I missing something else?  If you need any
more information that I left out please let me know.  My code for the php
files is located below this message.  Any help is greatly appreciated!

Thanks,
Keith

-Sending php file:




This is a test document


 Send this file: 
 




-Receiving php file:



";
if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile)) {
   print "File is valid, and was successfully uploaded. ";
   print "Here's some more debugging info:\n";
   print_r($_FILES);
} else {
   print "Possible file upload attack!  Here's some debugging info:\n";
   print_r($_FILES);
}
print "";

?> 



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



Re: [PHP] %20

2001-11-14 Thread TD - Sales International Holland B.V.

Spaces are not allowed in URL's, that the newer browsers do accept them 
probably means nothing more than that they don't show you that they encode it 
to %20

On Wednesday 14 November 2001 01:54, John Steele stuffed this into my mailbox:
> Hi Oosten,
>
>   I don't think that's a bug in NS 4.7, but part of the spec for URLs.  See
> the PHP manual for the urlencode() encode function.
>
> John
>
> >Hello
> >
> >I just discovered a netscape 4.7 bug when sending a string. The variable
> >cannot contain a space.  So a string like this does not work in netscape
> > 4.7
> >
> >objectdetail.php?Bouw=variable&Object_type=normal&Street_type=normal
> >street&.
> >
> >The variable Street_type doesn't get through netscape 4.7, but IE and
> >Netscape 6 do let the variable through.
> >
> >
> >Is there a way to automatically let a spacer fill with %20 so it works at
> >all browsers and i don't have to reprogram my system?
> >
> >
> >Thanks!
> >
> >
> >
> >Sjoerd van Oosten
> >Digitaal vormgever [EMAIL PROTECTED]
> >Datamex E-sites B.V.
> >http://www.esites.nl
> >Minervum 7368 Telefoon: (076) 5 730 730
> >4817 ZH BREDA Telefax: (076) 5 877 757
> >___

-- 
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]




Re: [PHP] %20

2001-11-14 Thread John Steele

Hi Oosten,

  I don't think that's a bug in NS 4.7, but part of the spec for URLs.  See the PHP 
manual for the urlencode() encode function.

John

>Hello
>
>I just discovered a netscape 4.7 bug when sending a string. The variable
>cannot contain a space.  So a string like this does not work in netscape 4.7
>
>objectdetail.php?Bouw=variable&Object_type=normal&Street_type=normal
>street&.
>
>The variable Street_type doesn't get through netscape 4.7, but IE and
>Netscape 6 do let the variable through.
>
>
>Is there a way to automatically let a spacer fill with %20 so it works at
>all browsers and i don't have to reprogram my system?
>
>
>Thanks!
>
>
>
>Sjoerd van Oosten 
>Digitaal vormgever [EMAIL PROTECTED]
>Datamex E-sites B.V. 
>http://www.esites.nl
>Minervum 7368 Telefoon: (076) 5 730 730 
>4817 ZH BREDA Telefax: (076) 5 877 757 
>___

--
/* SteeleSoft Consulting John Steele - Systems Analyst/Programmer
 *  We also walk dogs...  Dynamic Web Design  PHP/MySQL/Linux/Hosting
 *  www.steelesoftconsulting.com [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]




Re: [PHP] %20

2001-11-14 Thread Pavel Jartsev

Oosten, Sjoerd van wrote:

> Hello
> 
> I just discovered a netscape 4.7 bug when sending a string. The variable
> cannot contain a space.  So a string like this does not work in netscape 4.7
> 
> objectdetail.php?Bouw=variable&Object_type=normal&Street_type=normal
> street&.
> 
> The variable Street_type doesn't get through netscape 4.7, but IE and
> Netscape 6 do let the variable through.
> 
> 
> Is there a way to automatically let a spacer fill with %20 so it works at
> all browsers and i don't have to reprogram my system?
> 

You need this:

http://www.php.net/manual/en/function.rawurlencode.php

-- 
Pavel a.k.a. Papi


-- 
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] %20

2001-11-14 Thread Oosten, Sjoerd van

Hello

I just discovered a netscape 4.7 bug when sending a string. The variable
cannot contain a space.  So a string like this does not work in netscape 4.7

objectdetail.php?Bouw=variable&Object_type=normal&Street_type=normal
street&.

The variable Street_type doesn't get through netscape 4.7, but IE and
Netscape 6 do let the variable through.


Is there a way to automatically let a spacer fill with %20 so it works at
all browsers and i don't have to reprogram my system?


Thanks!



Sjoerd van Oosten 
Digitaal vormgever [EMAIL PROTECTED]
Datamex E-sites B.V. 
http://www.esites.nl
Minervum 7368 Telefoon: (076) 5 730 730 
4817 ZH BREDA Telefax: (076) 5 877 757 
___


-- 
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] 20 Million Fresh E-Mail Addresses

2001-02-07 Thread Luke2

TO BE REMOVED FROM FUTURE MAILINGS, SIMPLY REPLY TO THIS 
MESSAGE AND PUT
"REMOVE" IN THE SUBJECT.


   20  MILLION
 E-MAIL ADDRESSES
  FOR ONLY $249
**Over Night International Shipping Included** 


Many Call This "The "Perfect E-Mail List"

Over 20-Million Of The Best E-Mail Addresses Available

_/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/

Our research has found that many people have tried one or more of
the following...

Free Classifieds? (Don't work anymore)
Web Site? (Takes thousands of visitors)
Banners? (Expensive and losing their punch)
E-Zine? (Hope they have a *huge* subscriber list)
Search Engines? (Forget it, unless you're in the top 20)

 S O   W H A T   W I L L   W O R K ?

Although often misunderstood, there is one method that has proven
to succeed time-after-time.

 E - M A I L   M A R K E T I N G ! !

IT'S A FACT... If you're not using your computer to generate
income,  GOOD income,  you're leaving money on the table.

Here's what the experts have to say about E-Mail Marketing:

"E-mail is an incredible lead generation tool"
-Crains Magazine

"A gold mine for those who can take advantage of
bulk e-mail programs" - The New York Times

"Blows away traditional Mailing" - Advertising Age

Here's an example of your potential earnings if you have a
product or service that brings you a profit of around $30.
Remember, on the Internet, you can make money 7 days a week, 24
hours a day... even while you sleep, orders come from all over
the world!

Orders
Per DayWeekly  Monthly  Yearly

   1   $  210  $   840  $ 10,080
   2  4201,68020,160
   3  6302,52030,240
   51,0504,20050,400
  102,1008,400   100,000
  153,150   12,600   151,200

THE QUESTION IS... how do you generate those orders?

The least expensive and fastest way is through E-Mail Marketing.



  You want to make some money?

  I can put you in touch with over 20 million people at virtually no cost.

  Can you make one cent from each of theses names?

If you can you have a profit of over $200,000.00


  That's right, I have over 20 Million  Fresh  email

addresses that I will sell for only $249. These are all

fresh addresses that include almost every English person

on the Internet today, with no duplications. They are

all sorted and ready to be mailed.  That is the best

deal anywhere today!  


  Don't believe it? People are making that kind of

money right now by doing the same thing, that is

why you get so much email from people selling you

their productit works! 


  These 20 Million email addresses are 

yours to keep, so you can use them over and

over. 


  This offer is not for everyone. If you can not

see just how excellent the risk / reward ratio

in this offer is then there is nothing I can do

for you.  To make money you must stop dreaming

and TAKE ACTION.



Over the past 2 years, we have gained a reputation for having the
cleanest, most responsive e-mail address lists in the industry.
No one has gone to the work it takes to produce an e-mail address
list of this quality.

Here's how we prepare our e-mail lists:

1. We clean and eliminate all duplicates.

2. Next, we use a filter list of 400+ words/phrases to clean even
more. No address with inappropriate or profane wording survives!

3. Then we use our private database of thousands of known
Internet "extremists", those opposed to any kind of commercial
e-mail, and kicked off every one we could find.

4. All domains were verified to insure they're valid.

5. And finally, we sorted the list into easy-to-manage packets of
20,000 addresses in simple text (.txt) format that will work with
any computer operating system.

**
It is time to order!

Shipping is not an issue. 

**FedEx next day world wide shipping included  

As soon as we receive payment we will FedEx your e-mail list via 

CD straight to your door anywhere in the world FedEx next day guaranteed.

**International Orders Welcome*

US funds paid via paypal.com welcomed

PayPal is now available in the following countries:

Australia 
Austria 
Belgium 
Brazil 
Canada 
Denmark 
France 
Germany 
Hong Kong 
Ireland 
Israel 
Italy 
Japan 
Mexico 
Netherlands 
New Zealand 
Norway 
Portugal 
Singapore 
South Africa 
South Korea 
Spain 
Sweden 
Switzerland 
United Kingdom

PayPal.com is very easy to sign up to. They accept wire transfers, 

checks and credit cards from any of the countries listed above.

This payment process is in your own interest of safety. Paypal.com 

processes all transactions and keeps all your personal information 

secret. After signing up please send the U.S. equivalent of $249

to [EMAIL PROTECTED] last name Smith.

If there is another way you would like to pay please e-mail me 
 
at [EMAIL PROTECTED] and I will get back to you.


***Wond

RE: [PHP] 20 Million Fresh E-mail Addresses

2001-02-06 Thread Benjamin Munoz


On replying to SPAM:

Most of you already know this, but replying to SPAM (even if they tell you
that you can remove yourself) usually leads to more SPAM, b/c you've just
given the SPAMMERS your email address confirmed.  
http://www.chugach.net/~techtips/spam3.htm

Just a warning.  

-Ben

-Original Message-
From: Luke [mailto:[EMAIL PROTECTED]]
Sent: Monday, February 05, 2001 6:14 PM
To: [EMAIL PROTECTED]
Subject: [PHP] 20 Million Fresh E-mail Addresses


TO BE REMOVED FROM FUTURE MAILINGS, SIMPLY REPLY TO THIS 
MESSAGE AND PUT
"REMOVE" IN THE SUBJECT.


   20  MILLION
 E-MAIL ADDRESSES
  FOR ONLY $249
**Over Night International Shipping Included** 


Many Call This "The "Perfect E-Mail List"

Over 20-Million Of The Best E-Mail Addresses Available

_/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/

Our research has found that many people have tried one or more of
the following...

Free Classifieds? (Don't work anymore)
Web Site? (Takes thousands of visitors)
Banners? (Expensive and losing their punch)
E-Zine? (Hope they have a *huge* subscriber list)
Search Engines? (Forget it, unless you're in the top 20)

 S O   W H A T   W I L L   W O R K ?

Although often misunderstood, there is one method that has proven
to succeed time-after-time.

 E - M A I L   M A R K E T I N G ! !

IT'S A FACT... If you're not using your computer to generate
income,  GOOD income,  you're leaving money on the table.

Here's what the experts have to say about E-Mail Marketing:

"E-mail is an incredible lead generation tool"
-Crains Magazine

"A gold mine for those who can take advantage of
bulk e-mail programs" - The New York Times

"Blows away traditional Mailing" - Advertising Age

Here's an example of your potential earnings if you have a
product or service that brings you a profit of around $30.
Remember, on the Internet, you can make money 7 days a week, 24
hours a day... even while you sleep, orders come from all over
the world!

Orders
Per DayWeekly  Monthly  Yearly

   1   $  210  $   840  $ 10,080
   2  4201,68020,160
   3  6302,52030,240
   51,0504,20050,400
  102,1008,400   100,000
  153,150   12,600   151,200

THE QUESTION IS... how do you generate those orders?

The least expensive and fastest way is through E-Mail Marketing.



  You want to make some money?

  I can put you in touch with over 20 million people at virtually no cost.

  Can you make one cent from each of theses names?

If you can you have a profit of over $200,000.00


  That's right, I have over 20 Million  Fresh  email

addresses that I will sell for only $249. These are all

fresh addresses that include almost every English person

on the Internet today, with no duplications. They are

all sorted and ready to be mailed.  That is the best

deal anywhere today!  


  Don't believe it? People are making that kind of

money right now by doing the same thing, that is

why you get so much email from people selling you

their productit works! 


  These 20 Million email addresses are 

yours to keep, so you can use them over and

over. 


  This offer is not for everyone. If you can not

see just how excellent the risk / reward ratio

in this offer is then there is nothing I can do

for you.  To make money you must stop dreaming

and TAKE ACTION.



Over the past 2 years, we have gained a reputation for having the
cleanest, most responsive e-mail address lists in the industry.
No one has gone to the work it takes to produce an e-mail address
list of this quality.

Here's how we prepare our e-mail lists:

1. We clean and eliminate all duplicates.

2. Next, we use a filter list of 400+ words/phrases to clean even
more. No address with inappropriate or profane wording survives!

3. Then we use our private database of thousands of known
Internet "extremists", those opposed to any kind of commercial
e-mail, and kicked off every one we could find.

4. All domains were verified to insure they're valid.

5. And finally, we sorted the list into easy-to-manage packets of
20,000 addresses in simple text (.txt) format that will work with
any computer operating system.

**
It is time to order!

Shipping is not an issue. 

**FedEx next day world wide shipping included  

As soon as we receive payment we will FedEx your e-mail list via 

CD straight to your door anywhere in the world FedEx next day guaranteed.

**International Orders Welcome*

US funds paid via paypal.com welcomed

PayPal is now available in the following countries:

Australia 
Austria 
Belgium 
Brazil 
Canada 
Denmark 
France 
Germany 
Hong Kong 
Ireland 
Israel 
Italy 
Japan 
Mexico 
Netherlands 
New Zealand 
Norway 
P

[PHP] 20 Million Fresh E-mail Addresses

2001-02-06 Thread Luke

TO BE REMOVED FROM FUTURE MAILINGS, SIMPLY REPLY TO THIS 
MESSAGE AND PUT
"REMOVE" IN THE SUBJECT.


   20  MILLION
 E-MAIL ADDRESSES
  FOR ONLY $249
**Over Night International Shipping Included** 


Many Call This "The "Perfect E-Mail List"

Over 20-Million Of The Best E-Mail Addresses Available

_/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/

Our research has found that many people have tried one or more of
the following...

Free Classifieds? (Don't work anymore)
Web Site? (Takes thousands of visitors)
Banners? (Expensive and losing their punch)
E-Zine? (Hope they have a *huge* subscriber list)
Search Engines? (Forget it, unless you're in the top 20)

 S O   W H A T   W I L L   W O R K ?

Although often misunderstood, there is one method that has proven
to succeed time-after-time.

 E - M A I L   M A R K E T I N G ! !

IT'S A FACT... If you're not using your computer to generate
income,  GOOD income,  you're leaving money on the table.

Here's what the experts have to say about E-Mail Marketing:

"E-mail is an incredible lead generation tool"
-Crains Magazine

"A gold mine for those who can take advantage of
bulk e-mail programs" - The New York Times

"Blows away traditional Mailing" - Advertising Age

Here's an example of your potential earnings if you have a
product or service that brings you a profit of around $30.
Remember, on the Internet, you can make money 7 days a week, 24
hours a day... even while you sleep, orders come from all over
the world!

Orders
Per DayWeekly  Monthly  Yearly

   1   $  210  $   840  $ 10,080
   2  4201,68020,160
   3  6302,52030,240
   51,0504,20050,400
  102,1008,400   100,000
  153,150   12,600   151,200

THE QUESTION IS... how do you generate those orders?

The least expensive and fastest way is through E-Mail Marketing.



  You want to make some money?

  I can put you in touch with over 20 million people at virtually no cost.

  Can you make one cent from each of theses names?

If you can you have a profit of over $200,000.00


  That's right, I have over 20 Million  Fresh  email

addresses that I will sell for only $249. These are all

fresh addresses that include almost every English person

on the Internet today, with no duplications. They are

all sorted and ready to be mailed.  That is the best

deal anywhere today!  


  Don't believe it? People are making that kind of

money right now by doing the same thing, that is

why you get so much email from people selling you

their productit works! 


  These 20 Million email addresses are 

yours to keep, so you can use them over and

over. 


  This offer is not for everyone. If you can not

see just how excellent the risk / reward ratio

in this offer is then there is nothing I can do

for you.  To make money you must stop dreaming

and TAKE ACTION.



Over the past 2 years, we have gained a reputation for having the
cleanest, most responsive e-mail address lists in the industry.
No one has gone to the work it takes to produce an e-mail address
list of this quality.

Here's how we prepare our e-mail lists:

1. We clean and eliminate all duplicates.

2. Next, we use a filter list of 400+ words/phrases to clean even
more. No address with inappropriate or profane wording survives!

3. Then we use our private database of thousands of known
Internet "extremists", those opposed to any kind of commercial
e-mail, and kicked off every one we could find.

4. All domains were verified to insure they're valid.

5. And finally, we sorted the list into easy-to-manage packets of
20,000 addresses in simple text (.txt) format that will work with
any computer operating system.

**
It is time to order!

Shipping is not an issue. 

**FedEx next day world wide shipping included  

As soon as we receive payment we will FedEx your e-mail list via 

CD straight to your door anywhere in the world FedEx next day guaranteed.

**International Orders Welcome*

US funds paid via paypal.com welcomed

PayPal is now available in the following countries:

Australia 
Austria 
Belgium 
Brazil 
Canada 
Denmark 
France 
Germany 
Hong Kong 
Ireland 
Israel 
Italy 
Japan 
Mexico 
Netherlands 
New Zealand 
Norway 
Portugal 
Singapore 
South Africa 
South Korea 
Spain 
Sweden 
Switzerland 
United Kingdom

PayPal.com is very easy to sign up to. They accept wire transfers, 

checks and credit cards from any of the countries listed above.

This payment process is in your own interest of safety. Paypal.com 

processes all transactions and keeps all your personal information 

secret. After signing up please send the U.S. equivalent of $249

to [EMAIL PROTECTED] last name Smith.

If there is another way you would like to pay please e-mail me 
 
at [EMAIL PROTECTED] and I will get back to you.


***Wond