admin

Managing 2 websites from 1 admin panel

Hi friends, Is it possible to control 2 different Drupal website from 1 admin panel? 2 different domain, but on same host-server. one of my client came up with the idea and I wasn't sure if it can be done. Appreciate advices! Thanks a lot! ...

In WordPress 3.0.1, my categories box is not showing up in the post edit screen?

I'm setting up WordPress for a client. It's version 3.0.1. As I'm setting things up, it seems now that the category box (where you select the category you want the post to go into) doesn't show up in the post edit page? It was most definitely there before, but now it is not. I'm not sure what's happened? I even reinstalled the whole th...

Django: Update Field Value Based on Other Fields

I am not sure this is even possible without modifying the Admin interface. I have a model called "Quote" that can contain multiple "Product" models. I connect the two using an intermediate model "QuoteIncludes". Here are the three models as they currently stand: class Product(models.Model): name = models.CharField(max_length=100) ...

Umbraco 4.5.2 admin UI broken

The Umbraco admin interface is broken for me, and in IE8 it shows couple of javascript errors. For a few hours it worked fine, but suddenly the css/style file appears to have gotten corrupted. I had just finished with Master and hpme pages for my site, so I don't think it is related to my changes :). Does any one know how to restore th...

Django: How to create a complex admin action that requires additional information?

I'm interested in creating an action for the admin interface that requires some additional information beyond the items selected. My example is bulk adding comics to a series. (Yes I know the obvious answer is to create a schema with X-to-X relationships, but bare with me for the sake of a simple example). In this example, I've created ...

Install WinForms application without admin rights

I develop a Windows Forms application using VS 2008. Application will be deployed in Corporate Environment: a network (VPN, LAN) is in several cities, many PC clients Windows XP; and there is a only Server Win2003, with several WCF Services, Windows Service, shared folders, and Database that use the WinForms app. Network is WORKGROUP, no...

admininstration section

I'm building my first web application(i mean first huge web application)using php but i have some questions about admin section.what are the ways for making admin i mean i thought i could make it this way: First make an array: $pages = array('post' => 'posts.php', 'category' => 'categories.php'); And then read get var check if it's in...

[Wordpress] Find post categories or tags when editing a post

I'm trying to figure out how to find a post category or tag when editing a post in wp-admin. I need this because I want to show some modules in the editor only for a post of a certain category. Is there a way to accomplish that result? ...

Simple Admin functionality in Rails 3

Hello, I want to add a admin functionality to my webapp with Rails version 3. I want something very simple, there will be only one admin, this funcionality doesn't need a username field, just a password field. I don't know how to do it, can you help me? Thanks! ...

I want to create a menu editor for my website using PHP and AJAX

I created menu.php which loads the menu items from a MySQL database, parses them through a function which creates the code for the menu items which are then displayed in order in an HTML list (tell me if this is confusing and I can post the code). What I would like to make is an admin page the would allow the user to reorder the menu ite...

Zend Framework Admin Module structure

I am creating a large web application with Zend Framework 1.10. A am new in Zend Framework(1 month experiance). Can you explain me how to create a admin module in the best way?(with own authentication). How to make this with good security? Thanks a lot. ...

PHP Include or copy paste mysql login info on every page?

Is it safe to use php_include file for mysql login information or is is better to copy/paste the login info for mysql on every page? If you go with php_include, how will you block that file from being seen? ...

How to prevent PHP files from being downloaded? And what are some ways someone can download them?

How do i prevent php files from being downloaded "illegally" like through the browser. And what are some ways someone can use to download the php files? ...

Django modelAdmin __init__ and inlines

Hey, I'm fairly new to Django, and I'm looking to edit admin class variables dynamically (The full idea is to hide inlines on adding and only show on editing, but I'm distilling the issue here). Could someone explain why this doesn't work? class dbTablePermissionInline(admin.TabularInline): model = dbPermission class adminDbTable(...

Upgrade Wordpress Plugins Remotely

Is there a way to remotely upgrade wordpress plugins? The closest thing i have found is http://managewp.com/ but the updater there does not work properly. ...

.Net application cannot access xml file, receives "Invalid site"

I have an application which lives at on \\myserv1\D (mapped to D:). When I execute D:\app\app1.exe it needs to access \\myserv1\E(mapped to E:) E:\app\app1.xml. From what I can tell XslTransform.Load() is throwing a System.ArgumentException with a message of "Invalid site". Security is of no concern, how can I give this application acces...

magento cutom module to edit product tab

Ok so i built a module now I need to move it so it shows up as a tab in edit product I tried creating directory app/code/local/mycompanyname/adminhtml/Catalog/Product with all the same sub directories and file structure of my original module and in each of the files change the classes for example edit.php from class <myCompany>_...

drupal 6: redirect admin url for custom user role

Hi friends, I need to redirect a url for a user role. URL From: http://www.example.com/admin URL TO: http://www.example.com/admin/content/filter User Role: example-admin So, when a user (example-admin role) login to admin panel with the url example.com/admin , he will not see Access Denied page, but redirected to content/filter as ...

Ruby on Rails: CSS and skins management

I have a skin support in my app. I'm looking for a tool, which will enable the customer (not the programmer, which is current) alter the skins. Is there an admin tool (gem, plugin) for Rails to manage (edit, create, view) these skins? I looking for some easy solution like /admin/skins page where I could do all the stuff, otherwise I'm g...

Django Interleaving UserProfile with Profile in Admin

I have a User Profile which is currently shown in the Admin via a Stacked Inline. However because I have fields such as last_name_prefix and last_name_suffix (for foreign names such as Piet van Dijk to cover proper sorting by last name) I would like to be able interleave the user profile fields with the normal change user fields. So in t...