linasinblues wrote:just try rebooting your internet again. you are already in yay as i can see your ics screen.
linasinblues, why are you sending people chasing wild goose? Didn't you see the pictures? It took him some time to upload them somewhere and then include the url links for us to see and then you gave an incorrect advise. He is not connected to YaY, if you pay close attention to the picture and if you understand english which I doubt(because of your silly and out of place reply in another topic) you will see that Yahoo disconnects his YaY:
"Your requesto to log in............ unable to authenticate your user ID"
Please, if you do not what you are talking about, do not post useless replies, do not offend people that took lot of their time to post an elaborated question with pictures and stuff, with your two lines, silly, inacurate, useless advice.
TheSicilian, everybody started having connection problems because Yahoo changed something that affects YaY but no STUCI around March 13 this year. Now, forget about using YaY.exe, executable files are not editable(at least not for non programming oriented people). you need to use YaY.pl because you can edit YaY.pl with notepad(although I do not recomend this). Just remember that in order to use YaY.pl you need ActivePerl. Also remember(and this has been posted already) that the latest version of ActivePerl does not includes modules for TK(which are needed to see the test word jpg), you either have to find out how to install those modules, or download an erlier version(5.8 will do fine). Also, do not install the 64 bits version of ActivePerl because nobody has written modules for 64 bits yet. The 32 bits version works just fine in windows 64 and more than like also in Windows Vista 64. According to your pictures you are beyond that and the only reason I am posting this is because so other people can read it.
Open your YaY.pl with not pad and do this:
Replace these two lines:
my $profilenumber=$1;
print "Done, your profile number is:$profilenumber.\n";
With this:
my $profilenumber=$1;
if ($profilenumber eq '') {
print "Unable to retrieve profile number.";
my $xyz=0;
until ($xyz eq '1') {
print "Enter profile number(usually 1): ";
$profilenumber=<STDIN>;
chomp $profilenumber;
if ($profilenumber eq '') {
print "Blank profile number, try again.\n";
}
else {
$xyz=1;
}
}
}
else {
print "Done, your profile number is:$profilenumber.\n";
}
*********************************************
After that, if YaY can not retrive a profile number, then the does prompt will let you know and will ask you to enter a profile number which is usually 1.
That's it. There is nothing in this reply (except giving hell to linasinblues) that has not been told before in this forum. I took the time to answer the question, next time you take time to browse the forum please.