user

Adding a trigger to a WPF custom control

Hi! I have a custom user control named DatePicker.xaml. Its code behind is DatePicker.xaml.cs: namespace GesHoras.UserControls { /// <summary> /// Lógica de interacción para DatePicker.xaml /// </summary> /// public partial class DatePicker : UserControl { <...> private int _day; private int _year; private int _month...

Problem cloning / fetching repository using Git plugin for Hudson on Windows

Before anybody shoots me down for this - I have already checked every appropriate thread and still not found a solution to my problem. I have Hudson with git plugin installed on windows server (not my choice) and Hudson runs as a service. Git/bin is on the path. However I cannot clone the repository. Here is a shortened display of the c...

Manage user warnings

Hi, I'm not used to work with values that should decrement every a timelapse like for a user warned, for example a warn which persist for 30 days that can reach a maximum value of 3 warns before the user get banned I thought to design a user table like this but now I should work on it, I find it not useful on decrementing the values eve...

Username not being displayed correctly

I have a field for addedBy in one of my classes. I've set up a count for this field as below: user_count = Issues.objects.values('addedBy').annotate(count=Count('id')) Then in my template I'm accessing the variable as {% if user_count %} <div class="menutitle"><strong>{% trans "Added By" %}</strong></div> {% for item in us...

How to drop oracle user starting with colon (:)

Help! I've used impdp and had a typo - now I've got a user name starting with colon (:) - e.g :my_schema. How can I drop this user? I've tried everything I could think of to escape it, but nothing helps. Edit: To clarify - I know how to drop a user. I'm having difficulty overcoming the special character issue. ...

New users cannot login on live server, but can on local dev server (modx cms).

I've been adding CMS functionality to a site using modx Evolution 1.0.2. I've been doing this on my local dev server (MAMP) and recently put up a copy of the site on a shared host (Bluehost) and everything seems to be working fine except that new users cannot login (wrong username/password combination). Users that were created on my loca...

SQL 2005 Security - Users: What are they used for? (and other various questions)

Hello I am not a DBA and so dont really know anything about SQL 2005 security settings, etc. I am attempting to set up an empty copy of our database by generating the full database from SQL Management Studio generated scripts. Unfortunately I don't know what many of the options do and the MSFT documentation of this processes isn't great...

WiX: How do you write variables specified on installation to the current user registry key of ALL users?

OS: MS Windows XP Pro (SP3) My application needs to access external databases, the locations of which I specify on installation. The specified file paths are then written to the registry, and the application then pulls this information out of the registry when it needs to. I have implemented this in WiX as follows, using just one of the...

add user to turnkeylinux.org, Trac instance

I'm trying to get up and running on Trac quickly for a pending migration. Could someone tell me how to add new users to Trac. As I understand it trac authenticates against apache, which uses a password file. I know how to use htpasswd but I don't know where the password file is. Am I going down the wrong road here? ...

MySQL cloud transaction accounting per user?

We are expanding our hosting capabilities and want to provide MySQL database access in a large shared environment (think cloud services) - our goal is to charge per transaction per user similar to Amazon's EC2 services. What mechanisms are available for this type of DB accounting in MySQL? ...

Programmatically add Local User to a Local Group

Hi, I am doing an C# application targeting WinXP, Vista, and 7 Operating Systems. One feature is, I can Add, Remove, Modify the Group set to a user programmatically. Can I ask for help how to make this happen? Will it be possible to do this in WMI? My codes mainly using WMI to get the users.. ...

How can I get the correct user in a mail filter in CVS loginfo?

I have a single CVS user (cvs) on my Unix box and I map all CVS users to this user via CVSROOT/passwd. When I do this, all mails are sent by the user cvs. I'd like to show the name of the committer in the mail subject (or even as the sender of the mail). Is there any other way than creating a real Unix user? ...

Integrated windows authentication and cloning users from xp

Hi, I have a security question about integrated windows authentication. Let say we are using .net remoting hosted in iis. The system uses integrated windows authentication. What if some client manages to clone the OS to other PC or just clone the user to other PC. (Other PC whit the same username and same password hash) Then also the...

Spaghetti Rails Routing and Invitation Coding Bolognese

I'm not really sure if there is a single problem here or I have approached this in the wrong way, but any suggestions would be greatly appreciated! In the application when a user signs up they get privileges and their page gets set up, they can then invite colleagues by email. The email has an activation code tagged on the end. An exam...

User controls and Viewstate

I have a user control where I display a telerik radgrid and some textboxes and radcombo boxes. My radcombo boxes lose view state on postbacks. The text boxes and the grid maintain their state, but not the combo boxes. Any clues why? I read somewhere that databound controls on user controls don't maintan their state on postbacks. Thi...

What's a reliable and practical way to protect software with a user license ?

I know software companies use licenses to protect their softwares, but I also know there are keygen programs to bypass them. I'm a Java developer, if I put my program online for sale, what's a reliable and practical way to protect it ? How about something like this, would it work ? <1> I use ProGuard to protect the source code. <2> Sig...

C# - Programmatically Log-off and Log-on a user

Hi, I'd like to know if is there any way in C# to programatically log-in a Windows User Account? We are currently developing an monitoring application and one of the feature is to be able to log-off the current Windows User and switch to another Windows User Account. I have some few methods for Logging off, such as through API or Com...

Auto complete a statement in eclipse

Is there a way to auto complete a statement in eclipse? If I type if (condition) it should, after pressing some key, become if (condition) { // putting cursor here } ...

Wordpress plugin to track logged users activity

Hello. I need a Wordpress plugin to let me see any logged user's activity. I need to know what the user accessed from when he logged in. Any suggestions ? Thanks. ...

php mysql database users connection handling

What is the best way to handle mysql database users connection in PHP? I have a web server running a PHP application on MySQL. I have created a database user for the application: dbuser1 with limited access - only for query, insert and update tables. No alter table. Now the question is, should i use the same dbuser1 widely in my script...