[wdvltalk] convoluted layout/css help needed

2004-05-25 Thread Rita Crisafi
HI. First of all, I want to thank everyone who was so kind to help me 
with my first inquiries about this project, it was quite a help.

Here's my situation, I'm tearing out my hair:
if you look at the page 
http://www.crisafidesign.com/ppsa/agh.html you will see an 
expandable menu that I adopted from gazingus.org. The styles are 
included on the page for easy access/viewing.

Below this expandable menu is an image that depicts what the designer 
would like to see, i.e., each list item is contained inside a box. 
each box is the same width and all text aligns to the left. Right 
now, where i've set my background color, it only applies to the menu 
text and can't have a width set or padding...

Can anyone help me unravel this to create something that looks more 
or less like the image?

 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
  Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: "set WDVLTALK pw=yourpassword" in the body of the email.
To change subscription settings to the wdvltalk digest version:
   http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___
You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016
Please include the email address which you have been contacted with.


[wdvltalk] [OT] Price bid for programmers

2004-05-25 Thread William Stewart
Hello everyone,

I know this is off-topic, but I wanted to give some of you programmers
the opportunity to bid on a project for my client.  Because this is
off-topic, please reply to my email account to keep this off the list:
[EMAIL PROTECTED]

My client is Gospel90.3 (www.gospel903.com).  They are a radio station
located in Haines City, FL.  I am gutting their website completely from
top to bottom and working on the backend as well.  I need two scripts
created for them:

1) Station Schedule

We are going to set up the site so that no matter where they are, a
visitor can see what is currently playing on the station and what will
play after that.  The information will also be output to a "schedule"
page.

They need to be able to update the schedule of their station easily with
just their browser.  My clients should be able to enter the name of the
program, time schedule and a short description.

2) Audio uploader

They want to upload weekly sermons by their pastor onto the site.  

They need to be able to update the schedule of their station easily with
just their browser.  My clients should be able to enter the title of the
message, speaker, date and Bible reference.

The program should be able to automatically create a link for the files
on a "sermons" page along with the mentioned values in a format
consistent with the design of the site.

--

If possible, I need this to be outputted in a flat-file and not mysql.
They only have one database account and it is already being used.  If my
mysql is a necessity for you, please let me know and I will see what I
can do.

Programming cannot be in ASP or ColdFusion because their hoster is
compatible.

Please remember to reply off-list to my email address:
[EMAIL PROTECTED]

Thanks very much,
Will Stewart  


 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: "set 
WDVLTALK pw=yourpassword" in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.



[wdvltalk] Re: Apache Guru

2004-05-25 Thread Sheila Fenelon
R'twick Niceorgaw wrote:
I'll still prefer mod_userdir as in just three
lines I can set it up for all users like
Userdir dirname
Userdir enabled
Userdir disabled root 

The last line is not needed 
and now any request for http://server/~user will serve contents from
/home/user/dirname

I use this method as well, and it really is the simpliest. The 
convention is to use 'public_html' for dirname. Anything they put in 
their public_html directory will be viewable via the web server. The 
permissions on public_html need to allow the web server user (apache) 
access to the directory and files in it.

These are the comments in my httpd.conf file:
# The path to the end user account 'public_html' directory must be
# accessible to the webserver userid.  This usually means that ~userid
# must have permissions of 711, ~userid/public_html must have permissions
# of 755, and documents contained therein must be world-readable.
# Otherwise, the client will only receive a "403 Forbidden" message.
#
HTH,
Sheila


 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
  Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: "set WDVLTALK pw=yourpassword" in the body of the email.
To change subscription settings to the wdvltalk digest version:
   http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___
You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016
Please include the email address which you have been contacted with.


[wdvltalk] Re: Apache Guru

2004-05-25 Thread R'twick Niceorgaw
Quoting Paul Larue <[EMAIL PROTECTED]>:

> As I said, people are uploading images to their folder. And I got a web
> interface that give them access to those files.
> 
> After some thoughts, mod_alias is not a good option since I'll have to
> create an alias for each user. A dynamic stuff would be better, I think
> I heard about mod_rewrite that does something like that. You think this
> could help?
> 
> Paul

I never used mod_rewrite but I'm sure you can do that. It may be little more
complex than mod_userdir though. I'll still prefer mod_userdir as in just three
lines I can set it up for all users like

Userdir dirname
Userdir enabled
Userdir disabled root 

The last line is not needed 
and now any request for http://server/~user will serve contents from
/home/user/dirname

I think with mod_rewrite this can also be achieved with something like

RewriteRule ^/usr(.*) /home/usr/dirname/$1

I hope (not sure though read the docs on mod_rewrite)  this will serve
http://server/usr from /home/usr/dirname 

R'twick
-- 
This is a signature


This message was sent using IMP, the Internet Messaging Program.

 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: "set 
WDVLTALK pw=yourpassword" in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.



[wdvltalk] Re: Apache Guru

2004-05-25 Thread Paul Larue
As I said, people are uploading images to their folder. And I got a web
interface that give them access to those files.

After some thoughts, mod_alias is not a good option since I'll have to
create an alias for each user. A dynamic stuff would be better, I think
I heard about mod_rewrite that does something like that. You think this
could help?

Paul

| -Original Message-
| From: R'twick Niceorgaw [mailto:[EMAIL PROTECTED] 
| Sent: Tuesday, May 25, 2004 4:54 PM
| To: [EMAIL PROTECTED]
| Subject: [wdvltalk] Re: Apache Guru
| 
| 
| Quoting Paul Larue <[EMAIL PROTECTED]>:
| 
| > I don't want to give them access to their dirs directly, I 
| just want 
| > to be able to load images or files from that dir. I think that 
| > mod_alias has my answer...
| > 
| > Any ideas?
| > 
| > Paul
| 
| you can use either one.. end result will be just same. In 
| either method you are not giving users any direct access to 
| their home dir.
| 
| usedir is convenient for physical users on the system where 
| as alias can be used to map any arbitrary name to a path on 
| the server.
| 
| R'twick
| 
| -- 
| This is a signature
| 
| 
| This message was sent using IMP, the Internet Messaging Program.
| 
|  . The WDVL Discussion List from WDVL.COM . 
| To Join wdvltalk, Send An Email To: 
| mailto:[EMAIL PROTECTED] 
|Send Your Posts 
| To: [EMAIL PROTECTED]
| To set a personal password send an email to 
| [EMAIL PROTECTED] with the words: "set WDVLTALK 
| pw=yourpassword" in the body of the email. To change 
| subscription settings to the wdvltalk digest version:
| http://wdvl.internet.com/WDVL/Forum/#sub
| 
|   http://www.wdvl.com  ___
| 
| You are currently subscribed to wdvltalk as: 
| [EMAIL PROTECTED] To unsubscribe send a blank email to 
| %%email.unsub%%
| 
| To unsubscribe via postal mail, please contact us at: 
| Jupitermedia Corp.
| Attn: Discussion List Management
| 475 Park Avenue South
| New York, NY 10016
| 
| Please include the email address which you have been contacted with.
| 


 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: "set 
WDVLTALK pw=yourpassword" in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.



[wdvltalk] Re: Apache Guru

2004-05-25 Thread R'twick Niceorgaw
Quoting Paul Larue <[EMAIL PROTECTED]>:

> I don't want to give them access to their dirs directly, I just want to
> be able to load images or files from that dir. I think that mod_alias
> has my answer...
> 
> Any ideas?
> 
> Paul

you can use either one.. end result will be just same. In either method you are
not giving users any direct access to their home dir.

usedir is convenient for physical users on the system where as alias can be used
to map any arbitrary name to a path on the server.

R'twick

-- 
This is a signature


This message was sent using IMP, the Internet Messaging Program.

 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: "set 
WDVLTALK pw=yourpassword" in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.



[wdvltalk] RE: Apache Guru

2004-05-25 Thread Cheryl D. Wise
Instead of doing it through Apache why not use something like PHP Advanced
Transfer Manager http://phpatm.free.fr/ 


Cheryl D. Wise
Certified Professional Web Developer
MS-MVP-FrontPage
www.wiserways.com
mailto: [EMAIL PROTECTED]
713.353.0139 Office

-Original Message-
From: Paul Larue 

Hi all,
First fo all: I'm TOTALLY new to apache (yep, those people still exist!). 

Here's what I'm doing... I have people uploading files on a linux box.
Each one has his user name and password and is uploading in his
/home/user_name/dir1/ dir.

I need to have a web page where bu username/password they'll be able to view
their files... I can't send them to http://ip/home/user_name/dir1/ so I'd
like to create virtual dirs for each of them and have them use it... Let's
say

http://ip/user1 will show files found in /home/user1/dir1/

Anyone can help me on doing that. I downloaded the documentation and it
looks quite heavy. But I believe this is because I'm a newbie :)


 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: "set 
WDVLTALK pw=yourpassword" in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.



[wdvltalk] Re: Apache Guru

2004-05-25 Thread Paul Larue
I don't want to give them access to their dirs directly, I just want to
be able to load images or files from that dir. I think that mod_alias
has my answer...

Any ideas?

Paul

| -Original Message-
| From: R'twick Niceorgaw [mailto:[EMAIL PROTECTED] 
| Sent: Tuesday, May 25, 2004 4:25 PM
| To: [EMAIL PROTECTED]
| Subject: [wdvltalk] Re: Apache Guru
| 
| 
| Sorry,
| it was mod_userdir not mod_usrdir. and here's the link to 
| document http://httpd.apache.org/docs-2.0/mod/mod_userdir.html
| 
| R'twick
| 
| Quoting R'twick Niceorgaw <[EMAIL PROTECTED]>:
| 
| > Hi Paul,
| > I think if you have mod_usrdir installed (this is part of apache
| > distribution)
| > then you can setup apache so that http://ip/~user will point to the 
| > homedir of user (note the ~ before user). I don't have access to my 
| > box right now to give
| > the exact syntax but mod_usrdir docs at apache.org can tell 
| you exactly how
| > to
| > set this up. Its pretty easy. probably couple of lines of code. This
| > assuming
| > you have access to the server to change httpd.conf file.
| > 
| > If the files are in a subdir under the home dir then you 
| can browse it 
| > by http://ip/~usr/dir. If you want http://ip/usr to go to 
| > http://ip/~usr/dir then mod_rewrite can help you there.
| > 
| > --
| > This is a signature
| > 
| > 
| > This message was sent using IMP, the Internet Messaging Program.
| > 
| >  . The WDVL Discussion List from WDVL.COM . 
| > To Join wdvltalk, Send An Email To: 
| mailto:[EMAIL PROTECTED] 
| >Send Your Posts To: [EMAIL PROTECTED]
| > To set a personal password send an email to 
| [EMAIL PROTECTED] with 
| > the
| > words: "set WDVLTALK pw=yourpassword" in the body of the email.
| > To change subscription settings to the wdvltalk digest version:
| > http://wdvl.internet.com/WDVL/Forum/#sub
| > 
| >   http://www.wdvl.com  ___
| > 
| > You are currently subscribed to wdvltalk as: 
| > [EMAIL PROTECTED] To unsubscribe send a blank email to 
| > %%email.unsub%%
| > 
| > To unsubscribe via postal mail, please contact us at: Jupitermedia 
| > Corp.
| > Attn: Discussion List Management
| > 475 Park Avenue South
| > New York, NY 10016
| > 
| > Please include the email address which you have been contacted with.
| > 
| > 
| 
| 
| -- 
| This is a signature
| 
| 
| This message was sent using IMP, the Internet Messaging Program.
| 
|  . The WDVL Discussion List from WDVL.COM . 
| To Join wdvltalk, Send An Email To: 
| mailto:[EMAIL PROTECTED] 
|Send Your Posts 
| To: [EMAIL PROTECTED]
| To set a personal password send an email to 
| [EMAIL PROTECTED] with the words: "set WDVLTALK 
| pw=yourpassword" in the body of the email. To change 
| subscription settings to the wdvltalk digest version:
| http://wdvl.internet.com/WDVL/Forum/#sub
| 
|   http://www.wdvl.com  ___
| 
| You are currently subscribed to wdvltalk as: 
| [EMAIL PROTECTED] To unsubscribe send a blank email to 
| %%email.unsub%%
| 
| To unsubscribe via postal mail, please contact us at: 
| Jupitermedia Corp.
| Attn: Discussion List Management
| 475 Park Avenue South
| New York, NY 10016
| 
| Please include the email address which you have been contacted with.
| 


 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: "set 
WDVLTALK pw=yourpassword" in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.



[wdvltalk] Re: Apache Guru

2004-05-25 Thread R'twick Niceorgaw
Sorry,
it was mod_userdir not mod_usrdir. and here's the link to document
http://httpd.apache.org/docs-2.0/mod/mod_userdir.html

R'twick

Quoting R'twick Niceorgaw <[EMAIL PROTECTED]>:

> Hi Paul,
> I think if you have mod_usrdir installed (this is part of apache
> distribution)
> then you can setup apache so that http://ip/~user will point to the homedir
> of
> user (note the ~ before user). I don't have access to my box right now to
> give
> the exact syntax but mod_usrdir docs at apache.org can tell you exactly how
> to
> set this up. Its pretty easy. probably couple of lines of code. This
> assuming
> you have access to the server to change httpd.conf file.
> 
> If the files are in a subdir under the home dir then you can browse it by
> http://ip/~usr/dir. If you want http://ip/usr to go to http://ip/~usr/dir
> then
> mod_rewrite can help you there.
> 
> -- 
> This is a signature
> 
> 
> This message was sent using IMP, the Internet Messaging Program.
> 
>  • The WDVL Discussion List from WDVL.COM • 
> To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
>Send Your Posts To: [EMAIL PROTECTED]
> To set a personal password send an email to [EMAIL PROTECTED] with the
> words: "set WDVLTALK pw=yourpassword" in the body of the email.
> To change subscription settings to the wdvltalk digest version:
> http://wdvl.internet.com/WDVL/Forum/#sub
> 
>   http://www.wdvl.com  ___
> 
> You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
> To unsubscribe send a blank email to %%email.unsub%%
> 
> To unsubscribe via postal mail, please contact us at:
> Jupitermedia Corp.
> Attn: Discussion List Management
> 475 Park Avenue South
> New York, NY 10016
> 
> Please include the email address which you have been contacted with.
> 
> 


-- 
This is a signature


This message was sent using IMP, the Internet Messaging Program.

 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: "set 
WDVLTALK pw=yourpassword" in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.



[wdvltalk] Re: Apache Guru

2004-05-25 Thread R'twick Niceorgaw
Hi Paul,

Quoting Paul Larue <[EMAIL PROTECTED]>:

> Hi all,
> First fo all: I'm TOTALLY new to apache (yep, those people still
> exist!). 
> 
> Here's what I'm doing... I have people uploading files on a linux box.
> Each one has his user name and password and is uploading in his
> /home/user_name/dir1/ dir.
> 
> I need to have a web page where bu username/password they'll be able to
> view their files... I can't send them to http://ip/home/user_name/dir1/
> so I'd like to create virtual dirs for each of them and have them use
> it... Let's say
> 
> http://ip/user1 will show files found in /home/user1/dir1/
I think if you have mod_usrdir installed (this is part of apache distribution)
then you can setup apache so that http://ip/~user will point to the homedir of
user (note the ~ before user). I don't have access to my box right now to give
the exact syntax but mod_usrdir docs at apache.org can tell you exactly how to
set this up. Its pretty easy. probably couple of lines of code. This assuming
you have access to the server to change httpd.conf file.

If the files are in a subdir under the home dir then you can browse it by
http://ip/~usr/dir. If you want http://ip/usr to go to http://ip/~usr/dir then
mod_rewrite can help you there.

HTH
R'twick

If the files are in a subdirectory
-- 
This is a signature


This message was sent using IMP, the Internet Messaging Program.

 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: "set 
WDVLTALK pw=yourpassword" in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.



[wdvltalk] Apache Guru

2004-05-25 Thread Paul Larue
Hi all,
First fo all: I'm TOTALLY new to apache (yep, those people still
exist!). 

Here's what I'm doing... I have people uploading files on a linux box.
Each one has his user name and password and is uploading in his
/home/user_name/dir1/ dir.

I need to have a web page where bu username/password they'll be able to
view their files... I can't send them to http://ip/home/user_name/dir1/
so I'd like to create virtual dirs for each of them and have them use
it... Let's say

http://ip/user1 will show files found in /home/user1/dir1/

Anyone can help me on doing that. I downloaded the documentation and it
looks quite heavy. But I believe this is because I'm a newbie :)

Thanks for the help

Paul


 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: "set 
WDVLTALK pw=yourpassword" in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.



[wdvltalk] RE: Tricky mail...

2004-05-25 Thread Paul Larue
I believe you're right. I'm thinking of another option from an equipment
I've seen recently. Basically it can listen on specified ports on all
subnets simultaneously and act as the desired server for common
protocols like smtp/pop. Basically you put it on your lan and if your
pop server is 192.168.234.56 it listens on that IP on port 110 and
replies as being YOUR pop server. You send your email as auth and it
grabs it...

But I believe I'm going too far away from the logic. Those equipments
are not used for those kind of setups anyway... :)

Thanks for everything...

Paul

| -Original Message-
| From: Cheryl D. Wise [mailto:[EMAIL PROTECTED] 
| Sent: Tuesday, May 25, 2004 4:18 PM
| To: [EMAIL PROTECTED]
| Subject: [wdvltalk] RE: Tricky mail...
| 
| 
| I have never head of anyone being able to "grab" an email 
| address simply by someone surfing the web or associating with 
| a wireless access point. Doesn't seem like anyone else on 
| this list has either since  you have not received a single 
| post on "how to" grab an email address from someone's 
| computer simply by being connected.
| 
| 
| Cheryl D. Wise
| Certified Professional Web Developer
| MS-MVP-FrontPage
| www.wiserways.com
| mailto: [EMAIL PROTECTED]
| 713.353.0139 Office
| 
| -Original Message-
| From: Paul Larue 
| 
| I understand your point of view, but I'm thinking of 
| something more challenging. If I assume that he didn't enter 
| his email address, he's pretty conversant with those 
| technollogies (the first guy to install wifi networks in 
| mauritius back in 2000) and he'd know if they had his email 
| or if he gave it somewhere.
| 
| I believe this is something more tricky than simply sending 
| an auto generated email. Any other views?
| 
| 
|  . The WDVL Discussion List from WDVL.COM . 
| To Join wdvltalk, Send An Email To: 
| mailto:[EMAIL PROTECTED] 
|Send Your Posts 
| To: [EMAIL PROTECTED]
| To set a personal password send an email to 
| [EMAIL PROTECTED] with the words: "set WDVLTALK 
| pw=yourpassword" in the body of the email. To change 
| subscription settings to the wdvltalk digest version:
| http://wdvl.internet.com/WDVL/Forum/#sub
| 
|   http://www.wdvl.com  ___
| 
| You are currently subscribed to wdvltalk as: 
| [EMAIL PROTECTED] To unsubscribe send a blank email to 
| %%email.unsub%%
| 
| To unsubscribe via postal mail, please contact us at: 
| Jupitermedia Corp.
| Attn: Discussion List Management
| 475 Park Avenue South
| New York, NY 10016
| 
| Please include the email address which you have been contacted with.
| 


 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: "set 
WDVLTALK pw=yourpassword" in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.



[wdvltalk] RE: Tricky mail...

2004-05-25 Thread Cheryl D. Wise
I have never head of anyone being able to "grab" an email address simply by
someone surfing the web or associating with a wireless access point.
Doesn't seem like anyone else on this list has either since  you have not
received a single post on "how to" grab an email address from someone's
computer simply by being connected.


Cheryl D. Wise
Certified Professional Web Developer
MS-MVP-FrontPage
www.wiserways.com
mailto: [EMAIL PROTECTED]
713.353.0139 Office

-Original Message-
From: Paul Larue 

I understand your point of view, but I'm thinking of something more
challenging. If I assume that he didn't enter his email address, he's pretty
conversant with those technollogies (the first guy to install wifi networks
in mauritius back in 2000) and he'd know if they had his email or if he gave
it somewhere.

I believe this is something more tricky than simply sending an auto
generated email. Any other views?


 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: "set 
WDVLTALK pw=yourpassword" in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.



[wdvltalk] Search engine help...

2004-05-25 Thread Tristan . Pretty
My boss has asked me to create a report on our current search engine 
status (the easy bit)
and ideas to enhance our placement (the hard bit)

I know about:
META tags
ALT tags
not repeating key words too often

But what she really wants is a dumbed down version of this:
http://www.risk.sungard.com/seo.jpg

Why should ew use overture and similar companies etc...
I'm not a writer, and not very good at this kinda thing, and was wondering 
if anyone had experience at that sort of thing, and if I've taken on too 
big a project...?

Advise!!! ;-)

Tris...

*
The information contained in this e-mail message is intended only for 
the personal and confidential use of the recipient(s) named above.  
If the reader of this message is not the intended recipient or an agent
responsible for delivering it to the intended recipient, you are hereby 
notified that you have received this document in error and that any
review, dissemination, distribution, or copying of this message is 
strictly prohibited. If you have received this communication in error, 
please notify us immediately by e-mail, and delete the original message.
***


 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: "set 
WDVLTALK pw=yourpassword" in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.



[wdvltalk] Re: MM Flash MX vs. SwishMax

2004-05-25 Thread Ross Clutterbuck
Hi Riley

IMO it depends on what you're trying to acheive with your Flash movie. If
animation and basic interactivity is what you're after then there's no point
in shelling out a fortune for the full Macromedia Flash because you're only
going to use a tiny fraction of its functionality. However if you're going
to be creating full data-driven, media rich applications for web delivery
then I don't see anything on the market that can touch Flash MX 2004.

I agree that Flash is difficult at first but you pick things up very quickly
as you just dive in and emerse yourself in it.

Jan:
I would debate though that Flash is an expensive piece of software. True it
may be the most expensive tool on the market for what it does (not that
Adobe's LiveMotion was cheap before it was discontinued), but if you compare
its price and functionality to other media applications (Macromedia's own
Director for example) then I'd say it was very nicely priced. But again it
depends on what you're doing with it. Unless you're a super marketing wiz
it'll take you a while to cover the costs of Flash if you're just doing
animations, whereas a full web app (like Macromedia's new online store)
could well cover Flash in one go...

Just my thoughts

MOU


 • The WDVL Discussion List from WDVL.COM • 
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
   Send Your Posts To: [EMAIL PROTECTED]
To set a personal password send an email to [EMAIL PROTECTED] with the words: "set 
WDVLTALK pw=yourpassword" in the body of the email.
To change subscription settings to the wdvltalk digest version:
http://wdvl.internet.com/WDVL/Forum/#sub

  http://www.wdvl.com  ___

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

To unsubscribe via postal mail, please contact us at:
Jupitermedia Corp.
Attn: Discussion List Management
475 Park Avenue South
New York, NY 10016

Please include the email address which you have been contacted with.