Questions tagged [multiple-users]

213 questions
1
vote
1 answer

Open/Read a file which is already in use. Python

There is a software which writes/appends some log files. I wrote a Python script to read those log files and copy the info in another file. How can I make sure that the Python script won't interrupt the softwares process or that the Python script…
D D
  • 31
  • 3
1
vote
1 answer

How to create multiple tables for authentication in django

There is anyway to create two user tables that can be authenticated in django one table will be used to register normal users and other admins but that can not be related with django.contrib.auth thanks
Diogo Silva
  • 195
  • 3
  • 17
1
vote
1 answer

Issues with using a single git clone folder by several users (windows)?

There are a bunch of questions on sharing a git clone folder among several users, but everything seems to be for Linux (two are linked below). I have the same issue, but for a windows machine. I'm hoping others have done this and have a…
Brett Stottlemyer
  • 2,734
  • 4
  • 26
  • 38
1
vote
1 answer

Execute playbook with different sudo users on different hosts

There are two hosts in the host list DEV and QA host I need to execute playbook with dev_sudo_user for development env and qa_sudo_user for QA environment parallely inventory details [hostlist] host1 ansible_become_user=dev_sudo_user host2…
Devi Naga
  • 13
  • 4
1
vote
1 answer

Does the admin view has to have the public features of the app as well?

I am designing a website for tech events, which needs to have both an admin display and a public / user display. Admins of course can manage events, users etc. Users can save events, register, share events. E.g in the public / user navigation I have…
codeDragon
  • 555
  • 1
  • 8
  • 28
1
vote
1 answer

Using a single computer with multiple Git developers

There are many questions already on SO about the use of git/github with multiple users, mostly focused on a single developer having multiple accounts for different repositories. In that case, the solution is simple - local config files with…
chrisb2244
  • 2,940
  • 22
  • 44
1
vote
1 answer

Is there any API to get list of multiple users in instagram app or get the userid of currently active user among multiple users?

I need to share some content on instagram to specific user, so need to know the active user in app among multiple users. Please help. Thanks in advance.
1
vote
1 answer

How can multiple users simultaneously edit an Adobe Acrobat PDF?

Is it possible for multiple users to simultaneously add call-outs, comments, and text boxes to a PDF in Adobe Acrobat? We have a PDF printout of a web portal that has been marked up by our supervising engineer--three of us will be addressing the…
Paul NoCal
  • 57
  • 1
  • 1
  • 7
1
vote
1 answer

MS Access Front-end: Does each user need their own copy?

In one of my Stack Overflow questions about MS Access front-ends, an SO community member suggests that each user should have their own copy of the .MDB or .ACCDB front-end file: Don't put the database on a network drive and share it with users. …
1
vote
1 answer

Best practice for saving multiple users' data locally on device (Or is it necassary?)

My app has a chat feature, and the chats are held in SQLite. Currently this is an issue if multiple users use the same phone. Chats from all the users would show up in the past message areas, although the messages would appear to be sent from the…
KarlCobb
  • 149
  • 1
  • 9
1
vote
0 answers

PHP MPM_PREFORK for +4000 users

I have the next mpm_prefork settings: StartServers 1024 MinSpareServers 128 MaxSpareServers 1024 MaxClients 2048 ServerLimit 2048 With this config I'm able to have around 1700 users before getting connection reset error for the rest of the…
Esteru
  • 177
  • 1
  • 7
1
vote
1 answer

Return department of user's manager?

I'm trying to gather some information for a clean-up effort on my company's vendor accounts. One of the bits we want is "what department is their manager in?" My little script right now will return several other pieces of info, and I can…
3Jake
  • 51
  • 1
  • 2
  • 11
1
vote
1 answer

Installing Android Studio in a Computer Lab Environment with Individual Student Logins on OSX

I installed of Android Studio on the main administrator account, including downloading all the appropriate sdks, tools, etc. using the sdk manager, and further installing genymotion. After everything was set, that computer was imaged and deployed…
1
vote
3 answers

BASH script to add username, password and multiple groups

ASSUMPTIONS: I have a file called users.txt username:password:groups user1:password:group1,group2,group3 user2:password:group3 user3:password:group1,group3 user4:password:group2,group3 CODE #!/bin/bash FILENAME="users.txt" while IFS=':' read…
user2470057
  • 529
  • 4
  • 17
1
vote
1 answer

Pre enter fields on a form and disable a text field for certain user php and mysql database

I am implementing a minutes form, where minutes of a meeting between a student and supervisor are saved within a database table called 'minute.php'. When a student is adding minutes, they are required to enter some data but some fields need to be…
AnnaB2015
  • 21
  • 1
  • 1
  • 7