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
19
votes
4 answers

Visual Studio - TYPE_E_REGISTRYACCESS

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.Controllers\bin\Debug\MyPortal.Website.Controllers.tlb".…
Junior Mayhé
  • 16,144
  • 26
  • 115
  • 161
19
votes
5 answers

how to change theme in Magento2

UPDATE: this could be a version issue, should I update to the non-stable 2.0.4? I know this should seem obvious to someone, but clearly it's not. as state in the documentation In Admin, go to Stores > Configuration > Design. but there is only a…
aahhaa
  • 2,240
  • 3
  • 19
  • 30
19
votes
4 answers

How to install homebrew packages locally

I got homebrew installed, however I do not have admin access. How do I install homebrew packages without admin access? Is there a local tag or something that I keep missing?
Ford Smith
  • 195
  • 1
  • 1
  • 7
19
votes
4 answers

Create an admin user programmatically in WordPress

Recently I had a client come to me to build a new website. They had also forgotten all their login details, but they did have FTP access. How do you create an admin user programmatically in WordPress?
Drew Baker
  • 14,154
  • 15
  • 58
  • 97
19
votes
7 answers

Magento UploaderJsObject is not defined

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 error: Uncaught ReferenceError:…
Wesley Smits
  • 1,314
  • 6
  • 23
  • 37
19
votes
7 answers

Django: serving ADMIN media files

I've been successfully serving media files for the normal MEDIA files, but when I tried serving admin media files, I failed. please kindly help me locating the problem, as I've tried to troubleshoot the problem for several hours already with no luck…
Adrian Liem
  • 251
  • 1
  • 3
  • 11
18
votes
3 answers

Separate Admin and Front in codeigniter

What is the best way to separate admin and front-end for a website in codeigniter where as I was to use all libraries, models, helpers etc. in common, but only controllers and Views will be separate. I want a more proper way, up for performance,…
Sohail
  • 2,058
  • 7
  • 33
  • 57
18
votes
9 answers

You require permission from "Myself" to delete folder - how to fix

I'm trying to delete a folder as an administrator, but I get the message "You require permission from UserAdam to delete folder". The problem is, I am logged on as UserAdam! I've tried changing the owner to Administrator to no avail also.
acernine
  • 729
  • 2
  • 6
  • 16
18
votes
1 answer

Failing to connect to remote mongodb server

I am trying to create a remote mongodb server to work with on my java project. I am using vagrant + ansible to create the environment, but fr soem reson i cannot get a connection. I always get connection refused through the network. the same code…
Gleeb
  • 10,773
  • 26
  • 92
  • 135
18
votes
4 answers

Django i18n: how to not translate the admin site?

I have an application in several languages but I would like to keepthe admin site always in english. What is the best way to do this? Thanks in advance.
filias
  • 244
  • 2
  • 9
18
votes
5 answers

Linux: How to find the list of daemon processes and zombie processes

I tried checking on Google, but I couldn't find much information related to the actual question. How do I get a consolidated list of zombie processes and daemon processes? How do I do it on different operating systems. Linux? AIX? Windows? I am…
kris123456
  • 501
  • 1
  • 5
  • 15
18
votes
1 answer

How to override Django admin's views?

I want to add an upload button to the default Django admin, as shown below: To do so I overrode the admin/index.html template to add the button, but how can I override the admin view in order to process it? What I want to achieve is to display a…
jul
  • 36,404
  • 64
  • 191
  • 318
18
votes
1 answer

How can I rename a column label in Django Admin for a field that is a method//property?

I am trying to redefine my admin page for the auth.User model. Everything is working properly, except for one thing. Check the code below: from django.contrib import admin from django.contrib.auth.models import User from access.models import…
Francisco
  • 1,352
  • 4
  • 13
  • 27
17
votes
3 answers

How to implement a command history on a telnet client? (up/down arrows)

I have a server that accept telnet connections for management. I miss the command history so I want to make my telnet session support it. My questions: 1) Do I have to implement that on the server side, so the server will send the past commands to…
chrisapotek
  • 6,007
  • 14
  • 51
  • 85
17
votes
3 answers

How to implement a paginator that doesn't call count(*)

I am working on a django website that has a MySQL innodb backend. We have hundreds of thousands of records in several of our tables and this is causing some site stability/performance issues in the admin. Specifically, django likes to make count(*)…
ebensing
  • 6,409
  • 4
  • 18
  • 20