Hi ,i'm new to ROMS and this is my first post on this forum.
In these days I have tried to download the new version of ROMS with Tortoise and at request of username and password i have inserted the same that I use for the login on myroms.org ,but the only result that i get is : "Forbidden ....You don't have permission to access /projects/src/browser on this server" .
Why ?
Is there something that doesn't go with my account?
or it needs to insert another password?
Thanks.
ROMS Download
Hi,
The address you need to enter into Tortoise is:
https://www.myroms.org/svn/src/trunk
The URL you entered is for Trac and should only be entered in a web browser.
The address you need to enter into Tortoise is:
https://www.myroms.org/svn/src/trunk
The URL you entered is for Trac and should only be entered in a web browser.
can not download ROMS
Hi,
when I tried to download ROMS, following problem occured:
svn: Bad URL passed to RA layer
svn: Unrecognized URL scheme: https://www.myroms.org/svn/src/trunk
anyone knows what is the problem? Thanks a lot!
when I tried to download ROMS, following problem occured:
svn: Bad URL passed to RA layer
svn: Unrecognized URL scheme: https://www.myroms.org/svn/src/trunk
anyone knows what is the problem? Thanks a lot!
Re: can not download ROMS
It is possible that your svn client was not built with WebDAV support. It's more likely that your client was with WebDAV but was not built with SSL support. If you are running the command line client type svn --version. You should see a section similar to the following:
ra_dav is the pertinent section. If the line "- handles 'https' scheme" is missing then your client was not built with SSL support. If you built Subversion yourself you need to make sure that your Neon library supports SSL. Type: neon-config and you should have something similar on the "Known features" line:
"dav [yes]" and "ssl [yes]" are the important ones. If either or both say "[no]" then you will need to build a suitable version of Neon with SSL and WebDAV support. The INSTALL file that comes with the Subversion sources will tell you what version you need. Or you can download a tarball of the Subversion dependencies. The package is called subversion-deps-1.4.3.tar.gz.
If you don't have neon-config then you will need install it with SSL and WebDAV support.
If you are not using the command line client from the official Subversion site then you will need to read your svn client's documentation to find out how to enable WebDAV connections over SSL.
Code: Select all
The following repository access (RA) modules are available:
* ra_dav : Module for accessing a repository via WebDAV (DeltaV) protocol.
- handles 'http' scheme
- handles 'https' scheme
* ra_svn : Module for accessing a repository using the svn network protocol.
- handles 'svn' scheme
* ra_local : Module for accessing a repository on local disk.
- handles 'file' scheme
Code: Select all
Known features: dav [yes], ssl [yes], zlib [yes], ipv6 [yes], lfs [no]
If you don't have neon-config then you will need install it with SSL and WebDAV support.
If you are not using the command line client from the official Subversion site then you will need to read your svn client's documentation to find out how to enable WebDAV connections over SSL.