Re: Programming a Chat Room (Server Push) & Ideas

2003-03-13 Thread Yupapa
Hello, Thanks CGI::Push doesn't work with internet explorer as i said earlier... But I came up with a better method using while(1) { } and sleep. It runs like a daemon and doesn't use meta refresh anymore. =) ### # Yupapa Web Hosting =^.^= # Web S

Programming a Chat Room (Server Push) & Ideas

2003-03-13 Thread Yupapa
efresh the message windows and I don't like the way of doing that because it causes the windows to blink (while updating). Do you have any other methods of updating the message windows so as to keep the messages up-to-date? Thanks, Yupapa ####### # Yupapa Web Hosting =

Re: Useradd and Passwd

2002-12-28 Thread Yupapa
Hi, It should be useradd -p 'md5_passwd' username It is a md5 password, not a normal password. Thanks Yupapa ###### # Yupapa Web Hosting # Web Site - http://www.yupapa.com # Email - [EMAIL PROTECTED] ## "Kevin Old&quo

Help Mail Headers and Body... :p

2002-12-28 Thread Yupapa
hat I want to do is to read through the txt file (which was downloaded using Net::POP3) and output the subject, sender, receiver and the body etc. If you know any suggestions, please let me know. Thanks for your help in advance Yupapa ## # Yupapa Web Hosting # Web

Re: Mail Attachment Corrupted... please help

2002-12-28 Thread Yupapa
nevermind... found out what was wrong!! thank you for reading BTW :p -- ## # Yupapa Web Hosting # Web Site - http://www.yupapa.com # Email - [EMAIL PROTECTED] ## "Yupapa" <[EMAIL PROTECTED]> ¼¶¼g©ó¶l¥ó [EMAIL PROTECT

Re: Mail Headers

2002-12-28 Thread Yupapa
thank you thank you!! -- ## # Yupapa Web Hosting # Web Site - http://www.yupapa.com # Email - [EMAIL PROTECTED] ## "Bob Showalter" <[EMAIL PROTECTED]> ? 2E4528861499D41199D200A0C9B15BC001D7E

Mail Attachment Corrupted... please help

2002-12-28 Thread Yupapa
code above is just read the file content and attach it to the mail message. I am not sure that I have to store the files to a temporary directory first and then do the encoding because I found that way slow. (or maybe that's the only way to do attachment) :p I've tried b

Mail Headers

2002-12-27 Thread Yupapa
and put each mail to a .txt file. In order to have better quality of the look of email, i have to remove the mail headers. Any help would be appreciated. Kind Regards, YUPAPA ## # Yupapa Web Hosting # Web Site - http://www.yupapa.com

Advice

2002-07-27 Thread Yupapa
someone, he/she can login to his account. Do you have any idea how to solve this problem? I prefer not to use .htaccess for my login script. If you think it works with cookie and session, could you please give me an example? I am not familiar with those. Many Thanks, Yupapa -- To

Re: filehandles and while loops

2002-07-27 Thread Yupapa
open(COUNT,") { chomp; if($_ =~ /BC0012/) { my($key,$count) = split('=',$_); $count++; print "$count\n"; } } close(COUNT); "David Gerler" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > okay... see

Re: Checking if a file is downloading

2002-07-25 Thread Yupapa
Hi, Does this work ah? #!/usr/bin/perl use strict; my($Bytes,$fhandle,$Buffer); my $file = 'yourfile.ext'; open(FILE, ">$file") or die print "Could not open $file: $!\n"; while ($Bytes = read($fhandle,$Buffer,1024)) { print FILE $Buffer; } close($fhandle); cl