Questions tagged [multiple-users]

213 questions
2
votes
0 answers

C# Webapplication: Why is session usercount (in global.Session_Start) different from hub usercount (in hub OnConnected)

I want to display the number of currently active users. I first realized that in global.Session_Start protected void Session_Start(object sender, EventArgs e) { int i = 0; Application.Lock(); i =…
2
votes
1 answer

Iphone multiple users application

I'm trying to figure out how to make an iPhone application allow multiple users (that have it installed) share data among them. Now, the tricky part is that I don't want to host a server at my place (very poor ISP services), so I would opt for an…
Daniel
  • 35
  • 4
2
votes
1 answer

how to fire 'profile_update' hook on adding/removing roles from wp-admin/users.php page? (or what other hook to use in this case)

Background On adding a specific role (referee) to a profile I add a profile page on a custom post type and link it to that user with a meta value on both the post and the user. I also check if a user has previously been that role (by a meta value on…
Fofandi
  • 33
  • 7
2
votes
1 answer

How to Measure data consumed by an user in Azure sql server database?

For an Azure sql server MI, we have multiple external users consuming data, I would like to know how much data an user is consuming/extracting from the DB? Can this be checked from, 1.) From SSMS using queries or UI? 2.) Azure portal?
Venkat
  • 47
  • 7
2
votes
1 answer

How can you set up a git repository on a server, and allow multiple users to do a git pull, instead of it being owned by one user?

As a team of developers, we build our projects locally (using git) & and push the code to a private repository specific to that project. For web applications, we connect to the production server via SSH and pull the code in. Our issue is that only…
jay-c
  • 23
  • 1
  • 5
2
votes
3 answers

Ask to set the working directory in R Studio - multiple users working with the same R script

We are three people using the same R script to work on our research project in R Studio. This brings some issues by setting the working directory, because the file and the data sheets are saved locally in everyone's Dropbox folder. So we use the…
Tom
  • 29
  • 5
2
votes
1 answer

How to prevent multiple users tables from colliding in SQL Server?

I'm creating an application in C# that calls multiple stored procedures. One of the stored procedure creates a table and the others query that table. Multiple users can use the application at the same time. What table would be appropriate in this…
D R
  • 125
  • 1
  • 1
  • 4
2
votes
0 answers

Django authenticate always return None

Found a lot of questions about it however couldn't find smth helps me. Settings.py contains Authentication Backend: AUTHENTICATION_BACKENDS = ( 'django.contrib.auth.backends.ModelBackend', ) And auth user model: AUTH_USER_MODEL =…
2
votes
1 answer

Doctrine2 - parent, children and sibling users like

after some research i'm still stuck finding a solution to my little problem! I would like to have a kind of pyramidal hirarchical structure for my users, but with a notion of 'sibling users', let me explain. I have users like that: the tree means…
2
votes
3 answers

Adding a bulk number of users to Jenkins

To create a new user in Jenkins, admin needs to provide a username, emialID and password. Being an admin, is there a way to add a large number of users to Jenkins at a time by providing their username as their mail id, display name as their name and…
Alla Sasikanth
  • 541
  • 3
  • 7
  • 22
2
votes
2 answers

Connecting different user to 1 server(database derby) in netbeans using java

I made an inventory system in netbeans using the language java and i connect it to derby as my database it is already working as a whole system but I want to have a client-server functionality what I mean is I want my program to have a server…
Gin
  • 21
  • 1
  • 1
  • 3
2
votes
2 answers

zf2 + Doctrine a different database for each member

Each connected member of my site has its database. Here is the doctrine config for "user_1": return array( 'doctrine' => array( 'connection' => array( 'orm_default' => array( 'driverClass' =>…
2
votes
3 answers

Can I get more than 1000 records from a PrincipalSearcher?

I am trying to get all users from Active Directory using code: PrincipalContext ad = new PrincipalContext(contextType, adserviceName, adContext, ContextOptions.SimpleBind, username, password); UserPrincipal u = new UserPrincipal(ad) {Name =…
Alex Le
  • 23
  • 3
2
votes
2 answers

Different users cannot use my WinForms app at the same time

I have a VS WinForms app that uses OleDB to read (only reading, no writing) info from an Excel file. My end-users install the program via click-once, created through the publish-option in Visual Studio Community. The installation works fine. BUT:…
dreojs16
  • 109
  • 12
2
votes
2 answers

Concurrent users on Application result in MySQL Database Error

I have a C# web application that connects to a MySQL database. When multiple users access the site at the same time we see a "there is already an open datareader associated with this command which must be closed first" error. The application works…
1
2
3
14 15