Re: CVS problems

2002-07-03 Thread Keiron Liddle

On Wed, 2002-07-03 at 15:44, Peter B. West wrote:
 Devs,
 
 Is anyone else experiencing cvs acces problems?

I think the server is down or can't be reached.

 Peter



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: CVS problems

2001-07-20 Thread Arved Sandstrom

At 12:14 AM 7/21/01 +0200, Karen Lease wrote:
Thanks much Rick, using cvs.apache.org fixed it.
Is there some list I should have been reading to know about that???

Easiest thing here is, SSH into your Apache account, and set up a .forward 
file that sends your apache email (your [EMAIL PROTECTED] stuff) to another 
email address of your choice. You will then find out about these kinds of 
things right away.

I didn't do this until recently myself. :-)

Regards,
Arved

Fairly Senior Software Type
e-plicity (http://www.e-plicity.com)
Wireless * B2B * J2EE * XML --- Halifax, Nova Scotia


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: CVS problems

2001-07-16 Thread Rick Tessner

On Mon, 16 Jul 2001 22:30:59 +0200, Karen Lease wrote:

Hi all,

cvs [login aborted]: connect to xml.apache.org:2401 failed: Connection
refused

Sounds like overload on the host, but I've never seen that before.
Apache wouldn't by any chance experiencing some kind of DOS attacks
recently?

Any suggestions?

It looks like the CVS repository has moved to cvs.apache.org.  This
is true for xml-fop and xml-cocoon2 at least.  I just use the anoncvs,
so I don't know about actually committer userids, but I'd assume that
all that has been moved over as well.

If you're a UNIX user and you just wanna change the CVS admin files
in your checked-out copy of xml-fop, use the following to replace
all refs to xml.apache.org to cvs.apache.org in the CVS/Root files.

[ This is sh/ksh/bash compatible ... something similar would need to
  be used for csh/tcsh ]

  cd xml-fop
  for i in `find . -name Root -print | grep CVS/Root` ; do
j=${i}.new
cat $i | sed -e 's/xml.apache/cvs.apache/'  $j
mv $i ${i}.orig
mv $j $i
  done

And change the entry in the ~/.cvspass file from xml.apache.org to
cvs.apache.org.

-- 
Rick Tessner[EMAIL PROTECTED]
MYRA Systems Corp. Fone: (250) 381 1335 x125  Phax: (250) 381 1304
   Cell: (250) 885 9452

Forget your troubles and blow some bubbles.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]