1
vote
1answer
16 views
Windows Service setup project - run service as administrator
Hi,
I've got a setup project for a Windows Service (.net 3.5, visual studio 2008).
The Windows Service needs to be run under the Administrator account, does anyone know how I can …
0
votes
2answers
24 views
How to undo another user’s checkout in TFS?
As the resident TFS admin, on occasion I am asked to undo a checkout (usually a lock) that a user has on a certain file checked into source control.
How do you undo another user' …
0
votes
2answers
22 views
How to undo another user’s checkout in TFS via the GUI?
As the resident TFS admin, on occasion I am asked to undo a checkout (usually a lock) that a user has on a certain file. This can be done via the command line using the TF.exe util …
0
votes
2answers
26 views
Django Admin: How to dynamically insert values into the add inline form
Let's say I have this model:
class Foo(models.Model):
bar = models.ForeignKey(Bar)
currency = models.ForeignKey(Currency) # currency is just an example
is_active = mod …
2
votes
2answers
64 views
How to make admin site safe ?
Hi guys,
very simple question:
I have admin site in my web project. So, how can I make it safe?
What I have until now:
Database handled user with userID and userlevel
on the pa …
1
vote
0answers
59 views
How to find the cause for growing server load [closed]
I'm having load problems with my server and even though I'm a somewhat experienced Linux admin I'm out of ideas now.
The problem is a slowly but steadily increasing load on the se …
0
votes
2answers
16 views
Restricting an entire symfony admin generator page according to credentials
I have a website with a large number of admin generators to take care of an assortment of tables. Within the realm of authenticated users, I want to be able to deny access, not jus …
0
votes
1answer
21 views
Long script in admin, task in Symfony?
In the admin panel, when the admin selects an action it will load data from an API and save it to the DB. It could take from 2 seconds to 3 minutes, depending on what he is importi …
0
votes
2answers
40 views
Reset or Configure Sharepoint Central Administration
My Central Admin for sharepoint works but shows messages on the status bar 'page with errors' and when i open a setting e.g. Authentication providers and when i try click Save/OK b …
1
vote
8answers
181 views
How to structure groups within a website? (admin, admin powers, user identity)
I am going to be making a small user system but I have questions.
If I were to make a registration table (mysql), what is wrong with just storing the password and username into t …
0
votes
6answers
63 views
Truly understanding Networking?
I understand the basics of networking such as Lan and stuff. I know what many of the protocols are and how to build a client/server socket program in C. But what I really want is …
1
vote
4answers
110 views
prepopulating admin user in database with authlogic rails plugin
I've been using the Authlogic rails plugin. Really all I am using it for is to have one admin user who can edit the site. It's not a site where people sign up accounts. I'm going t …
0
votes
2answers
50 views
Django Admin: Getting request in ModelForm’s constructor
The below code removes certain values from a drop down menu.
It works fine but I want to remove the value if the user lacks certain permissions.
How can I access request.user in t …
0
votes
2answers
51 views
Making Django admin display the Primary Key rather than each object’s Object type.
Hi all,
In Django 1.1 admin, when I go to add or change an object, my objects are displayed as:
Select host to change
* Add host
Host object
Host object
Host obj …
0
votes
2answers
146 views
Custom Django admin URL + changelist view for custom list filter by Tags
In django admin I wanted to set up a custom filter by tags (tags are introduced with django-tagging)
I've made the ModelAdmin for this and it used to work fine, by appending custo …
