I'm installing SVN with Apache 2.2 on windows 2003 everything seems good but when I try to login no username/password works
Here is some info
I load this module in httpd.conf
LoadModule auth_basic_module modules/mod_auth_basic.so
and in svnserv.conf i have
[general]
anon-access=read
auth-access=write
password-db=passwd
authz-db=authz
...
I just installed Oracle Express edition. During the installation it asked me to set a password but not a username. After the installation completed, it directed me to a browser window and asked me to login with a username and password. The password I know but the username I don't know. Is this an IQ test? Did I fail it?
...
I just moved my svn repository to a new server.
Previously I was accessing my repository via svn://oldserver/yyy/zzz
Now I want to access it via https://newserver:8443/svn/yyy/zzz
I used switch --relocate to repoint my source tree and this seemed to work well.
When I try to update the source I use:
svn.exe update zzz --username myuser...
Hello,
i have a custom query in a database which i want to display to users in a MOSS via performancepoint webpart.
I need to filter the report based on the username of the logged in user.
How can i pass the AD username to the performancepoint webpart?
Thanks
...
How does one get the logged in user name using jquery?
I am using ASP.Net and have been doing it in code behind like this:
System.Web.HttpContext.Current.Request.ServerVariables["AUTH_USER"].ToString();
I am trying to authenticate a user using the login domain name and use a web service to authenticate.
<script type="text/javascript...
How long is the maximium lenght of a windows username incl. domain?
domain\username
regards
...
Hi,
What are the important configuration points needed to enable a scenario where a WCF service can be called with
either
the logged-on-users windows credentials
or
a username/password combination.
I'm pretty sure I know how to set them up, but what I don't know is how I can force usage of the username/password endpoint.
Is it sim...
We have an ASP.NET intranet site, available to users who are either physically at and logged into a local machine or else to users who connect remotely via VPN. Is there a way to automatically get the username of whoever is accessing the page based on the name used to either log into the local machine or that used for the VPN?
...
How can I get the username/login name in java ?
I tried:
try{
LoginContext lc = new LoginContext(appName,new TextCallbackHandler());
lc.login();
Subject subject = lc.getSubject();
Principal principals[] = (Principal[])subject.getPrincipals().toArray(new Principal[0]);
for (int i=0; i<principals.len...
Is there a portable way to get the current user's username in Python (i.e., works under both Linux and Windows, at least). It would work like os.getuid:
>>> os.getuid()
42
>>> os.getusername()
'slartibartfast'
I googled around and was surprised not to find a definitive answer (although perhaps I was just googling poorly). The pwd mo...
We want to use the same user-id across all our dev tools, but this limitation from subversion is not allowing us to use email addresses as usernames.
...
I am working on user registration for a web app, and was just started thinking that I wouldn't want some clever/evil person to come along and register a user name like 'admin'.
What other user names should I disallow? Database keywords?
Does it matter?
Thanks in advance for you responses!
Edit: I have security covered. I am more inte...
Browsing through Coding Horror, I saw this article on removing the user field from a login dialog.
It's an interesting concept albeit an old one from 2005. Nevertheless, I started thinking about it and wondered:
How would you be able to do this in a secure fashion?
If you identify the user by their password that means all passwords m...
I have a signup page on my website where a user must provide a email address and password only.
I want to be able to create a username for this user automatically by using the first part of the email provided;
User supplies [email protected], i want to make username 'gordon'
I don't need explanation on how to create form or submis...
I am making a custom CPanel and Plesk module that assists in logging into a Web application using the user's login and password for CPanel and Plesk.
How would I use the module's API calls to retrieve the password?
Thanks.
...
After having to register at one more website, and hitting stupid restrictions on the Username (no spaces or special characters), I'm wondering why we still have programmers restricting things like that. Is there a concensus on the methodology of allowable usernames?
...
I am designing a simple registration form in ASP.net MVC 1.0
I want to allow the username to be validated while the user is typing (as per the related questions linked to below)
This is all easy enough. But what are the security implications of such a feature?
How do i avoid abuse from people scraping this to determine the list of val...
I am trying to update a VBScript (very little experience with this, I do a lot of VB.NET), that reads an FTP directory and moves certain files to a new local directory on a daily basis. I have old code that works on an FTP site that uses anonymous logins, but I now need it to access an FTP site that requires username and password.
Here...
Hi everyone,
I'm writing software in VB .NET (2005) which uses the Windows user information as login credentials - just the username. I've found Environment.UserName which works for the username (as you would expect).
However, I need more information - I need the full name of the user (as shown on the Start Menu). It seems this informa...
I am trying to find out where sharepoint gets the usernames from. In wss 3 on the "Personal settings" page there is a field name. In some cases it is populated with the login (like domain\username), on some installations I find it to be the actual name of the user. I guess that sharepoint at some point gets the real name from active dire...