admin Questions

4

Solved

I've got a model (Entry) which contains a simple property: @property def image(self): return str(self.id)+"_"+self.round.season.name+"_"+self.round.theme+"_"+self.person.name I use this to buil...
Whaleboat asked 9/3, 2011 at 16:49

1

I'm developing a sub-module in the admin panel. The first page grid shows the list of the users(Referrers / Parent users) and their total commission. In the "Actions" tab there's a drop-down, on cl...
Methaemoglobin asked 7/11, 2016 at 13:16

4

Solved

I'm starting to organize a new project and let's say i'll have a few models like products and catalogs. I will allow my clients (not visitors, only specific clients) to login on Django Admin site ...
Lisk asked 10/6, 2011 at 19:8

2

Solved

In Firebase Firestore, I'm trying to allow only (custom-assigned) admins to write/update/delete resources, and for that I've got these security rules: service cloud.firestore { match /databases/{...
Uncommon asked 7/11, 2017 at 9:31

2

I have nginx, gunicorn, django running on Ubuntu EC2 instance. The entire site operates fine. Except for the admin. The admin isn't displaying properly. I ran "python manage.py collectstatic" and e...
Paul asked 24/11, 2013 at 21:16

3

Solved

I've got django running in uwsgi behind nginx. When I try to access https://site/admin/ I get the expected login screen. Logging in via the form seems to succeed, however, I simply end up back at t...
Talyah asked 13/8, 2012 at 23:1

2

I know, that question was asked but it is not clear to me. I have put all fields 'readonly field' for Essai_TemperatureInline. I would like to add new Inline in the admin for records not created ...
Stearn asked 3/4, 2014 at 14:23

5

Solved

I want to run cmd.exe as administrator with arguments from C# in order to prevent a UAC popup. This is necessary in order to use it as an automated installation process. The command I am passing in...
Venerate asked 13/5, 2013 at 19:30

3

I need to replace my old admin login/user with a new one. I tried the following: CREATE LOGIN newDbAdmin WITH password='123isTheBestPasswordEver' CREATE USER newDbAdmin With this I'm then also a...
Ilailaire asked 18/11, 2012 at 2:56

2

Solved

I am using a gobuffalo framework to create a website with a postgres database, and I am trying to find a good admin dashboard to accompany it. Something like Rail's ActiveAdmin would be aweso...
Shiekh asked 21/8, 2017 at 14:50

3

Can anyone tell me what is the official way to create CRUD for admin back-end? In CakePHP 2 the baked code was extended with 'admin_' before the function names and for the view files. In CakePHP i...
Amalekite asked 31/7, 2016 at 8:58

1

Solved

I'm trying to configure the NSIS installer to run without admin privileges. Is this possible? I'm testing as a non-admin user because some customers don't have those privileges. What settings in...
Vistula asked 2/8, 2017 at 17:21

4

This topic is fairly common (most explicitly detailed here: http://www.hoboes.com/Mimsy/hacks/replicating-djangos-admin/), but I'm still having trouble with it. I'm trying to use the "plus" button ...
Merth asked 27/2, 2010 at 14:6

1

Solved

Consider this @admin.register(Personal, site=admin_site) class PersonalAdmin(admin.ModelAdmin): form = ChangePersonalForm add_form = AddPersonalForm def get_form(self, request, obj=None, **kwa...
Oleviaolfaction asked 3/7, 2017 at 4:6

1

I have an LDAP server with "dc=domain1,dc=com" as the olcSuffix. I would like to create a second domain "dc=domain2,dc=com" on the same server. Using this LDIF file: dn: olcDatabase={3}bdb objec...
Daze asked 17/6, 2015 at 17:27

2

Solved

DropWizard allows you to define administrative tasks and execute them remotely by hitting a URL. DropWizard apps also have a few built-in admin tasks, such as the Garbage Collector, which can be hi...
Error asked 21/12, 2014 at 20:56

3

How would you monitor a server performance in sense of : Count requests that has been timedout without processing at all (client was starved) Count requests that has been timedout while in proces...
Echinus asked 26/4, 2017 at 9:46

5

I'd like to create an admin user in Wordpress and then hide it from the users list in the wordpress dashboard, as a kind of hidden back door. I am not trying to hide all admins, only a particular o...
Donoho asked 4/1, 2014 at 14:18

0

I'm using Inno Setup to deploy an application. For most cases, a per-user installation that doesn't require admin privileges is fine. However, there are scenarios where I need to install the...
Poindexter asked 7/3, 2017 at 18:10

5

Solved

I created a new attribute (multiple select) with some values, everything works fine but when I want to delete all the selected values for a product, I get the message "The product attribute has bee...
Swift asked 10/2, 2012 at 10:59

1

I'm trying to add a custom page to the admin without a model association. This is what I achieved so far. class MyCustomAdmin(AdminSite): def get_urls(self): from django.conf.urls import url ...
Extol asked 2/1, 2017 at 8:50

7

Solved

I encountered a very weird error which i can't seem to solve. Anywhere in the admin area where i want to upload/view/delete images nothing is showing up. My 'inspect element' console gives me this...
Chau asked 23/10, 2012 at 12:15

2

Solved

I have an msi installer that I need to install it silently from the C# Process process = new Process(); process.StartInfo.FileName = "cmd.exe"; process.StartInfo.WorkingDirectory = @"C:\temp\"; pr...
Dysfunction asked 9/9, 2014 at 6:37

4

Solved

I'm building my Visual Studio solution and in the output window there's an error just for one project. In error tab: Error 161 Cannot register type library "D:\Sites\Website\MyPortal.Website.C...
Handset asked 24/2, 2011 at 16:56

1

My question is similar to How to list all prepared statements for all active sessions?, but for MySQL. I have a program (prosody XMPP server) that seems to be leaking prepared statements. To diagn...
Underproduction asked 7/10, 2016 at 4:36

© 2022 - 2024 — McMap. All rights reserved.