user

asp.net mvc view user control for data capturing

I am tring to add a user control to do a search. this user control is to be used on the home page and for example /category-page. where do I write the code for data capturing. is there a way to force the user control to submit to a HomeController or the controller I want? I hope my question is clear. I have the following on the homeco...

Best free registration process to avoid spammers/scammers

AT the moment, the site I look over sends an activation email to new members which have a link they must click to activate their account. While this seems like a good idea, it has many faults such as occasionally the email lands in their spam/junk folder and its yet another step the user has to do. I was try to make it easier for users ...

How to instruct users to report a bug in Android

How do you instruct users to report a bug in Android? Any advice or tips? I'd like to get send detailed instructions to my users to get the most of their bug report. I know there are various apps that send bug reports from the device and I was wondering how other Android developers deal with this. ...

How many users could run software that uses OpenGL 3.x?

Can I expect users to be able to run software that uses OpenGL 3.x? Can Linux users who have open-source graphics drviers run OpenGL 3.x? I know that Mesa3D 7.8 only supports OpenGL 2.1. I also know that OS X Snow Leopard supports some but not all OpenGL 3.0 features. I don't know the situation on Leopard. I don't know the situation ...

Powershell: Setting anonymous user in IIS6

I'm using the PowerShell script below to set anonymous user identity and authentication methods on an IIS6 server. The script seems to work at first, but if I issue an iisreset after running it the values revert to the old ones! How do I persist them? $server = "localhost" $siteName = "www.mysite.com" $iis = [ADSI]"IIS://$server/W3SV...

Django-profiles custom create/edit modelForm not saving properly

Summary: u = self.instance.user in def save(self, *args, **kwargs): u = self.instance.user u.first_name = self.cleaned_data['first_name'] u.last_name = self.cleaned_data['last_name'] u.save() return super(ProfileForm, self).save(*args, **kwargs) is causing a problem because self.instance doesn't exist. But yet this is how...

php Includes header with User Name

Hi I have a php includes on my site for header and footer on each page. I am changing the site to allow users to log in and out etc. How can I pass things like username to the header? Also I will want the header to display Log In when no user name is present but Log Out when a username is present. Any help appreciated. Richard ...

SQL Server 2008 - ssas user permission

I'm new to ssas and i'm fighting with users permissions... I have a cube with a region dimension i.e region A and region B. I created a role to filter dimension data so that members of that role have only access to region A. I put user A in this role. Now, when I test this configuration, if I select the role A in the security context,...

Maintaining visibility settings through persistence in dynamically created controls

I have a somewhat complex custom user control, created in C# .NET, which is essentially a tree structure. The control , ctlGroup, contains a list of fields (which are also custom user controls - ctlFields) and a list of child groups. The datalist containing the child groups creates new instances of the same ctlGroup control, because each...

Email users in a role (forms auth. sharepoint)

Hey guys. So... I've got a MOSS 2007 set up with forms authentication. I've also set up some roles with some users attached to these roles. Now, when I add a role to a site (site settings-> People and Groups) and I choose to send a welcome email, the users attached to that role don't receive an email. Is this even possible in MOSS 200...

Drupal and advanced user rights

Hi everyone ! I work for a webagency, and I have to develop an intranet/extranet app to be used as sort of a DMS (Document Management System) for a high school. Some of the requirements of the projects are using Drupal CMS and having advanced user rights. Let me explain : The professors can post only for their students, and the students ...

Should I add a user to the apache group

I have a wordpress website that has multiple developers trying to access it and they want to use the built-in theme editor. the theme editor requires write access for the apache group. I'm trying to figure out how to do this and I was thinking about adding all the users the the apache group? Is that a bad idea? is it unsecure? Each use...

Is there a way to check or display which users are currently logged on?

In drupal, is there a way to check or display which users are currently logged on? I want users who are logged on to be able to see who else is on. Is this possible and if so, how? Thanks. ...

ASP.NET Page.User is null during AJAX request

I'm using the MVC2 framework and one of my views has a bit of conditional logic that gets the Page.User.Identity object and does a comparison with other values to determine what to display. That all works fine on the initial page load, but when I make an AJAX call to get partial page updates (I'm doing this all manually with YUI3, not t...

Windows User Agent

Here is my code: <script type="text/javascript"> if (navigator.userAgent.indexOf('BlackBerry')!= -1){ document.write('<link rel="stylesheet" href="/m/css/mobile.css" type="text/css" />'); } else if (navigator.userAgent.indexOf('iPhone')!= -1) { document.write('<link rel="stylesheet" href="/m/css/smartmobile.css" type="text/css"...

Create Process As User after loading user profile

Hi All, I have service that runs as system, i want to spawn new process in some user TS session with the user privileges. I'm calling LogonUser, LoadUserProfile, CreateEnvironmentBlock, CreateProcessAsUser and spwan the process in the user TS session. The process (cmd.exe) run in the user TS session, but when i'm trying to run GUI app...

CREATEDB through a ROLE for a User in PostgreSQL

I have created a ROLE with name Admin and I have given it all accesses (including CREATEDB). I have created a User ekekakos who is member of Admin role and inherints from it. When I am trying to create a new DB with ekekakos I am getting the following message: ERROR. PERMISSION DENIED TO CREATE DATABASE. When I enable the option CAN CREA...

calling user defined function with params

hi I am defining function func1(); I want it to take some param(s) ie var func1(aaa, bbb){ //do something, anything! }; then i want to call it later in the doc something like this: $('#some_id').click(func1($this)); but its not working. I've been messing with it for a while but its very strange the way jquery/javascript handles u...

header files in C

how to create user defined header files in C step by step please including the compiling process as well :) SOLVED TY ALL ...

Google Apps Authentication

Hi i created a GAE application and deplyoed the application. I want to restrict the application for specific domain users. My idea is the application should display the login page of the particular domain and then the page redirects to another form in my application. What concept should i implement here.is Userservice helps me, if so how...