user

whats the best way to pass data to user components in asp.net?

its .net 2.0 here, not MVC, and im crap at asp forms :(. So yeah, ive got a page with user controls on it. When i click on something in the page, i want to load the usercontrol based on a parameter from the page. Problem is i cant do it. In my page's FaultTree_Clicked, i get the value, then ive tried a variety of things: I tried exp...

How to rate registered users?

Guys, I am thinking about a creation of my own blog/community engine. Could you advise what is a better way to rate registered users? It is pretty easy to add a score to an user if he or she has commented something, or remove scores if someone complains, but it is not a wise way. I think that a registered user should have weight or som...

Can't set permissions on MySQL user

I am trying to set the permissions for a MySQL user using the following command. GRANT ALL ON joomla.* to user@localhost; I have tried so many versions but they all return: ERROR 1044 (42000): Access denied for user ''@'localhost' to database 'joomla2' Which seems to indicate that the username "user" is not getting passed? I have trie...

Migrating password encryption schemas

I am possibly taking over an app that literally just encrypts user passwords by doing md5( password ) They have ~2000 users to date, so I'm wondering how I can migrate those passwords (or can I?) to a stronger encryption schema (e.g. involving a salt, user-specific hash, and their password, all encrypted with sha1, bcrypt, whatever) Th...

Django users groups

i needed a same funactional: authentificated users can add groups(if have permissions), add users (users added in groups that he create) and add permissions for groups or users. What are the best way for solve that task? ...

SQL Server 2005 workgroup edition users?

How many concurrent users on a Sql Server 2005 workgroup edition? Too 1 database? Too entire server? ...

In Java5, how do I get the full name of the user running the application?

In Java5, is there a way to get the full name of the user that is running the application using only JDK APIs? (I know about JAAS and third-party libraries, but they might not be installed on the target system). I know about System.getProperty("user.name") but that returns the user ID not user NAME. ...

Automated Development of Presentation with Interactivity

I am trying to identify the right tool, language, software package, or other for the automated development of presentations, where the presentation is user interactive. The presentation will consist of images with titles and some descriptive text. Most of the time there will be 35–70 images. I would like to show each image on a separate...

WiX wxs script with option to install on Selecting current-user or all-users install

I need a complete WiX script that can be build.It had Welcome EULA Install Folder Selecting current-user or all-users install Install Finish I hope I'm not asking for too much,I just need a single wxs file cause its for a simple application,also I need an option to install it for the current user or all user,I haven't been able to ...

Can I restrict the users who connect via Facebook Connect?

I'm building a website and I want it to integrate with Facebook Connect. The one problem I have is that I want to restrict the users connecting to only those who are part of a specific Facebook group or let them connect and have an admin approve their account. Is this possible? ...

will mmap use user cpu instead of whole sys cpu? (solaris)

when use mmap to allocate some anonymous mem, we often set the start address as 0/null so mmap will figure out the starting address by itself. And to get the start address, it will work thought the whole virtual memory space to find a hole which could put the chuck of mem to be allocated. I guess this is calculated as user cpu instead of...

How do I prevent SQL Server sysadmin users write access ?

I have created a test user that has sysadmin right in SQL Server 2005 (sysadmin, because i want to profile with this user name also).But i want to restrict that test users access rights to production database. It is under "logins" and also db name selected under the "User Mapping" tab of its properties with "db_denydatareader" default s...

Bring current user to the database layer

I have a classic 3-tier web application build with MySQL and Tomcat. I want to save the creator id of each database record for all tables at creator_id column or just log it somewhere. Current user is stored at the http session object. Modify all queries and pass creator id parameter is unacceptable. Can I solve the problem using trigg...

internet explorer cache location

Where is cache for IE for current user located? ...

How do I start an out of process COM server as another (more privileged) user

I would like to create a COM object that runs in an out of process COM server as another user. How do I do that? I have control over the COM server source code and my COM client is the only one that will be creating these COM objects. ...

Ways to determine returning "anonymous" guests in PHP

Two types of users visit my website: registered users and guests. Registered users are tracked and retained by PHP session, cookies and individual logins. Guests I find trickier to manage so I give little to no authority to contribute content. I want to open up editing for users (registered or not) to save favourites, shopping carts, vo...

Find out how many users are online in PHP?

Every visit to my website updates a user's individual hit counter and updates a column for time() based on their ip address and id stored in a cookie. So when coming to output the data, what's a more efficient way of my following code with less database calls, as it's essentially a copy of itself: <? $last1Min = time()-60; $last5Mins = ...

open source user profile management control?

Hello everyone, I am using platform C# + VSTS 2008 + ASP.Net. I am looking for some good quality, fancy and practical open source (in C#) open source controls. Any recommendations? thanks in advance, George ...

Enable Logging Log4j for certain users

Hi, In the log4j.properties file I've set the Level to ERROR. For certain users I need to set Level to DEBUG. I was able to change the Logging Level at run time; but this will be enabled for all the users accessing the application at the same time. Is there any other method by which we can enable logging for selected users? Any help will...

How to change default django User model to fit my needs?

The default Django's User model has some fields, and validation rules, that I don't really need. I want to make registration as simple as possible, i.e. require either email or username, or phone number - all those being unique, hence good as user identifiers. I also don't like default character set for user name that is validated in D...