user

When to add a Component Class vs User Control?

I have a general idea, and there are some obvious cases, but there are also some gray areas for me - when is it best to use to extend from a component and when is it best to create a user control ? This pertains to a specific work problem I am trying to solve, but the specifics of that are not important - a general answer to this questi...

When is the right time to say: "Now I need to create a user control!"

Hi guys, I wonder when do you consider to create a user control in .NET? Do you have some basic criteria to exclude your code from the page and introduce a new user control? Usually I tend to follow those to decide whether I need a user control or not: When the page seems to be more readable with a separate user control When some par...

Postgresql in Active Directory Machine

Hi u all, I have a server in wich is installed Postgresql. In this server i want to install theMicrosoft Active Directory. Can i do this without a problems? Can i change the user that run the Postgresql service without a problem? When i installa the AD all the machine users will be deleted so i need to create domain users to run that s...

Identifying the same user across multiple browsers/ISP connections

I run a film festival website which accepts ratings on films and I'm concerned with stopping people cheating the system (i.e. submitting multiple ratings to fix the top ten list). I've used techniques like IP address and browser stamp checking but I'm aware some people are trying to cheat the system by changing ISP connection or browse...

magento admin usernames

Hi There, Just wondering if anybody knows if its possible to set up admin user accounts. So that every potential user of the admin panel has their own login details. Is this possible? Regards, Fiona ...

Windows Vista users verification

hi! I want to verify that given username/password pair is a valid windows vista account using c#. ...

Django profile - user adding some objects

Hello, I'm learning Django and I have a problem. I want to have django user profile where the user can add some objects (he can add more than one) e.g. his addresses, his products and theirs description and so on. I've no idea how to do that. Thanks for any help. Best regards, LH ...

PHP session save_handler user (mysql) won't save

Hey guys, here's what I'm attempting: PHP sessions work by default with my configuration, if I just go session_start() and try the standard session increment test it works. if (!isset($_SESSION['count'])) { $_SESSION['count'] = 0; } else { $_SESSION['count']++; } However I want to use a MySQL table for session storage. I've ...

How to obtain Windows special paths for a user account from a service

I want to be able to retrieve Windows "special paths" (e.g. temporary files folder, desktop) for user accounts, but from a service. I know the normal way to do this is by using SHGetFolderPath with the appropriate CSIDL for the folder type. Is there any way to get this type of info for each user without the service having to log in as ...

User management, authentication and acl plugin for CakePHP?

Hi, I am pretty new to CakePHP, having been using rails for a little while. My question is, can anyone recommend a good user management, authentication and acl plugin or component for Cake? I have come across this one, but it has not been updated since 2008. If not can anyone recommend a good book/tutorial site for this kind of set up?...

How does fast user switching affect a windows service?

How does fast user switching affect a windows service? Are the services suspended? or do they keep running in the background when a different user logs in? ...

Security roles members in MS CRM 4.0

Is there a way to see users that have certain security role assigned? I'm looking for a hint that I missed something or a tool. ...

Orphaned entries in aspnetdb

After calling method _membershipProvider.DeleteUser(user.UserName, false); where where the second parameter (false) is deleteAllRelatedData, orphaned entries are left in the database (aspnet_Users table and probably more). What is the best practice for cleaning these up? EDIT: The user management code is already changed to now use tr...

Track where users come from in PHP?

Is it possible to find out where the users come from? For example, I give a client a banner, and the link. The client may put the banner/link to any website, lets say to a site called www.domain.com. When the user click the banner, is it possible to know where he coming from(www.domain.com)? ...

Are there any recent PHP Manuals, the CHMs with the user-contributed notes out there?

Are there any recent PHP Manuals, the CHMs with the user-contributed notes out there? The PHP guys seem to have 'dropped support' for them. Are some of them lurking around the PHP website itself, accessible by their unlinked URLs only? ...

How to filter users by email in Google App Engine?

Hi! I tried User(email = email) and User.all().filter('email = ', email).get(), but both of them don't work for me. Thanks ...

How to measure desktop applicaton usage by users?

I've wrote a app in c# .NET 3.5. People download it and use. I would like to know how many users do this and how many installed it. How to do this? ...

Any good .net membership user / group management controls?

I'm looking for any decent .Net membership components which can take the membership prodvider settings from the web.config and display the users / groups on an ASP .Net web page. I have a client requirement to be able to update / create / delete users as well as add / remove them from groups. There must be a decent control set out there...

Is there a limit when using php mail function?

I am using php and mysql I am going to send 10k++ (ten thousands plus) emails to update my subscribers, and this is the first time I am going to send them. I will use php mail function, basically here is what I will do: First get the data from database: Select name, email FROM data After that, using while loop to send the data: whi...

Display popup message when user login to site in J2EE(Filters)

Hi, I would like to show a popup message to the users when ever login to my site, only when login( later on it is not required). we are using java/j2ee for my application, and authentication provided using the Filters, once login success we are redirecting the request to the requested page(it is not the same always it depends on user a...