Questions tagged [admin]

admin may refer to both physical persons or software accounts that are dedicated and privileged to change the system they operate. Also used on WordPress to designate backend.

admin may refer to both physical persons or software accounts that are dedicated and privileged to change the system they operate. Also used on WordPress CMS to designate backend processes (see is_admin() conditional function).

4554 questions
1
vote
0 answers

Plugin admin settings not saving in network admin level only

add_action( 'admin_menu', array( &$this, '_settings_menu' ) ); add_action( 'network_admin_menu', array( &$this, '_settings_menu' ) ); I'm using [admin_menu] and [network_admin_menuu] actions to create some option pages for my plugin and the saving…
Hady Shaltout
  • 606
  • 1
  • 9
  • 22
1
vote
0 answers

PHP LOGIN val_csrf()

hello there I have a problem with the security csrf, so here is the code: for file helps.php session start(): function csrf_token() { if (isset($_SESSION["token"])){ unset($_SESSION["token"]); } $csrf_token =…
1
vote
0 answers

How to properly hyperlink class-based views in Django documentation generator?

Django documentation shows information on how to make link to the view, but not class-based view. When I do: """ Redirects to :view:`accounts.ProfileDetailView` """ It shows link with url to: /admin/doc/views/accounts.profiledetailview/, but…
1
vote
2 answers

Firebase/NodeJS behind proxy server

How do I run Firebase admin on NodeJS when the computer is behind a corporate proxy? npm has already config proxy and https-proxy. npm commands executes alright. Firebase however, tries to directly access the internet: Error: Credential…
Alex
  • 368
  • 5
  • 17
1
vote
1 answer

App Engine Admin API Error - The "appengine.applications.create" permission is required

We would like to automatically create a project ID and install our ULAPPH Cloud Desktop application using the App Engine Admin API (REST) and…
1
vote
1 answer

DjangoAdmin: Accesing the parent instance within an Inline admin

I have a Django admin class which declares an inlines iterable. Something like: @admin.register(Category) class CategoryAdmin(admin.ModelAdmin): ... ... inlines = [CategoryModifiersInline,] ... ... Then I have an Inline admin…
1
vote
1 answer

How to customize user roles in Wordpress DashBoard from PHP code?

I am customizing a part of a WordPress theme (Tiger theme). I would like to customize two roles. I would like to see new role names in both settings screens of new user creation (Users > Add New) and users list (Users > All Users). Which are the…
user6920400
1
vote
1 answer

Django admin date picker for search

I would like to use the Django date picker widget for searching in the admin. Lets suppose I have a model with field date_created. In the admin, I would like to have a date picker for date_created with start and end ranges using which I can filter…
Fahim Ahmed
  • 397
  • 4
  • 16
1
vote
1 answer

What role is required to create an iOS distribution certificate?

In writing this question, I figured out that the Agent role is required to create an iOS distribution certificate. I'm working with a partner. He created an Apple ID for the corporation to use for enrolling into the iOS Developer Program, and he…
ma11hew28
  • 121,420
  • 116
  • 450
  • 651
1
vote
1 answer

How to make ATG dynamo admin server password not expire

I've seen various posts that help you reset the password when it expires (using various means ACC, DB update etc). But, is there a way you can make the admin password never expire? We have lot of automation built around this admin interface and it…
Yuga
  • 21
  • 2
1
vote
1 answer

Alternative Admin in Django

Hello guys I would like to know if there's a way NOT to override Django Admin, but to build your own, with a custom template. I have searched on the internet but there seems to be no answer. I hope there is a person who knows the answer to my…
1
vote
0 answers

Batch update Gmail user photo

I need to batch update the profile picture of a large amount of users on my domain. I intend to do this using a spreadsheet containing the links to the pictures and the user's email address. I've been experimenting with the code below but it only…
James D
  • 3,102
  • 1
  • 11
  • 21
1
vote
0 answers

Dynamically choose between per-user and per-machine installation

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 app for all users, e.g. for Citrix or TSE. Unfortunately…
Thomas Levesque
  • 286,951
  • 70
  • 623
  • 758
1
vote
1 answer

Firebase token verfification on backend - firebaseID not found in "aud". Google client id is sent instead?

I'm getting this error when using Firebase Admin API to verify user's authentication token obtained from android client from the back-end server - com.google.firebase.auth.FirebaseAuthException: Firebase ID token has incorrect "aud" (audience)…
Sree
  • 117
  • 1
  • 11
1
vote
2 answers

Django how to list_display an object by status in admin

I have a model object say 'Category'. I allowed users to post Category item. The Category model has these: models.py LIVE_STATUS = 1 DRAFT_STATUS = 2 FOR_APPROVAL = 3 STATUS_CHOICES = ( (LIVE_STATUS, 'Live'), (DRAFT_STATUS, 'Draft'), …
Ronnie Beltran
  • 614
  • 1
  • 8
  • 21