Operating System - HP-UX
1855435 Members
12777 Online
104111 Solutions
New Discussion

Re: Forums Maintenance Downtime - Please Read

 
Gary Cantwell
Honored Contributor

Forums Maintenance Downtime - Please Read

*******************
ATTENTION SUPPORT FORUMS USERS -- THERE WILL BE A TWO HOUR DOWNTIME OF
THE SUPPORT FORUMS STARTING THIS FRIDAY MORNING, MAY 19th. THE DOWNTIME
IS FOR GENERAL MAINTENANCE AND UPGRADES. WE APOLOGIZE FOR ANY
INCONVENIENCE, THANK YOU.
*******************
14 REPLIES 14
James R. Ferguson
Acclaimed Contributor

Re: Forums Maintenance Downtime - Please Read

Hi Gary:

Can you provide a more specific time (GMT is fine), please?

Can you provide a more specific definition of "upgrades"?

Thanks & Regards!

...JRF...
Patrick Wallek
Honored Contributor

Re: Forums Maintenance Downtime - Please Read

I agree with JRF.... More details please.

Exactly when Friday morning? What kinds of maint. / upgrades?
Arunvijai_4
Honored Contributor

Re: Forums Maintenance Downtime - Please Read

Hi,

Are we going to see any surprises in ITRC interface and usability ???

Cheers,
Arun
"A ship in the harbor is safe, but that is not what ships are built for"
Steven E. Protter
Exalted Contributor

Re: Forums Maintenance Downtime - Please Read

Thanks for the information Gary,

Are you taking over for Cheryl?

Guess I missed the memo.

I'd of course love to see what the upgrade list is. Since A. Clay is so close to the next hat, maybe a new one, setting the bar higher.

I also hope the link click bug that nailed me is on the fix list.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Florian Heigl (new acc)
Honored Contributor

Re: Forums Maintenance Downtime - Please Read

Feature list:

User selectable caps lock kEyZ!

*smile*

Don't we all know how pressurized a 2hour-downtime can be? I feel with Gary.
yesterday I stood at the edge. Today I'm one step ahead.
Gary Cantwell
Honored Contributor

Re: Forums Maintenance Downtime - Please Read

Hi all,

Here's some further detail on the downtime:

It is due to begin at 9am PDT on friday morning

The main focus of the downtime is architecture and software upgrades to the database and application servers, along with Java.

Some of the enhancements that are also being added include:

Login service will use password encryption.
Formatted text will be retained - helps when posting code snippets.
One-Click unsubscribe for daily email notification.


Thanks Again,

Gary
Cheryl Griffin
Honored Contributor

Re: Forums Maintenance Downtime - Please Read

ping to the top
"Downtime is a Crime."
Jan van den Ende
Honored Contributor

Re: Forums Maintenance Downtime - Please Read

...It is due to begin at 9am PDT on friday morning...

Which equals 16:00 GMT

hth

Proost.

Have one on me.

jpe
Don't rust yours pelled jacker to fine doll missed aches.
Jeff Schussele
Honored Contributor

Re: Forums Maintenance Downtime - Please Read

Hi Gary/Cheryl,

I'm especially looking forward to the "formatted text" enhancement. It's been needed for some time.
Thanks for moving the forum forward - much appreciated.

Rgds,
Jeff
PERSEVERANCE -- Remember, whatever does not kill you only makes you stronger!
Gary Cantwell
Honored Contributor

Re: Forums Maintenance Downtime - Please Read

Jan,

can you email me? I want to get some more detail on your https issue,

Thanks,

Gary
Cheryl Griffin
Honored Contributor

Re: Forums Maintenance Downtime - Please Read

Ping
"Downtime is a Crime."
Gary Cantwell
Honored Contributor

Re: Forums Maintenance Downtime - Please Read

ping
Patrick Wallek
Honored Contributor

Re: Forums Maintenance Downtime - Please Read

Reminder for downtime due to start later this morning.
H.Merijn Brand (procura
Honored Contributor

Re: Forums Maintenance Downtime - Please Read

Just to check the reformatting thing
Thanks for this feature.
BTW Should the weekly stats retain formatting? They'd be bigger then

#!/pro/bin/perl

use strict;
use warnings;

use Net::FTP;

my $ftp = Net::FTP->new ("download.xs4all.nl", Debug => 0);
$ftp or die "$_: cannot connect: " . $ftp->message;
$ftp->login ('anonymous', 'ano.nymous@inter.net') or
die "$_: cannot logon: " . $ftp->message;
$ftp->cwd ("pub/mirror/gnu") or
die "$_: cannot chdir to pub/mirror/gnu: " . $ftp->message;
my @dir = grep s/^d.* // => $ftp->dir ("-tl");

$#dir = 30; # Max 20
foreach my $dir (reverse @dir) {
$ftp->cwd ($dir) or die "$dir: ". $ftp->message;
my @pkg = $ftp->dir ("-tl");
@pkg > 2 and $#pkg = 2;
print $dir, "\n ", (join "\n ", @pkg), "\n";
$ftp->cwd ("..");
}
$ftp->quit;
Enjoy, Have FUN! H.Merijn