admin

Backend Administration in rails

I'd like to build a real quick and dirty administrative backend for a rails app I have been attached to at the last minute. I've looked at activescaffold and streamlined and think they are both very attractive and they should be simple to get running but I don't quite understand how to set up either one as a backend admin page. They se...

Subfolders in CodeIgniter

Hi all, I'm new to CodeIgniter and I need some help. I'd like to implement the following: View a user's profile via: http://localhost/profile/johndoe ...but administrate a user's profile via: http://localhost/admin/profile/johndoe and then be able to accomplish even further processing via: http://localhost/admin/profile/create ...and...

How do you determine if an interface is a physical LAN port on a Windows PC?

I'm looking for a method to acurately determine if an interface is the physical 802.3 ethernet port on a pc in windows. Using ipconfig /all I can list all the interfaces, and when I do this on my pc several entries can be listed here including VPN, Bluetooth, Wifi and the physical ethernet interface. I'm looking for something like, "is...

Why won't Django 1.0 admin application work?

I've just started playing with Django and am loosely following the tutorial with my own set of basic requirements. The models I've sketched out so far are a lot more comprehensive than the tutorial, but they compile fine. Otherwise, everything should have been the same. My problem is with the admin application. I can log into it, and vi...

A powerful management tool for MySQL with similar features to SQL Server Management studio

I am currently working with a developer who is experinced at MsSQL, but not much at MySQL. He has been cursing MySQL for having Bugs, and also being far harder to use. Is is becuase his experince has been so good with Managment studio. It seems to me that his problems are with using phpMyAdmin. For example, he cites not being able to c...

Multiple Django Admin Sites on one Apache... When I log into one I get logged out of the other.

I have two Django projects and applications running on the same Apache installation. Both projects and both applications have the same name, for example myproject.myapplication. They are each in separately named directories so it looks like .../dir1/myproject/myapplication and .../dir2/myproject/myapplication. Everything about the ...

Replace textarea with rich text editor in Django Admin?

I would like to know the best way to replace a standard textarea field with a rich text editor in Django Admin? ...

How do you restrict access to certain paths using Lighttpd?

I would like to restrict access to my /admin URL to internal IP addresses only. Anyone on the open Internet should not be able to login to my web site. Since I'm using Lighttpd my first thought was to use mod_rewrite to redirect any outside request for the /admin URL back to my home page, but I don't know much about Lighty and the docs...

Recommendations for IIS book

Hi guys, I'm a developer who had handed to him the admin duties for our IIS server. I'm reasonably familiar with IIS in terms of setting up web sites, virtual directories, and such and such, but I figure if I'm going to be administrator the server entirely, I better get up to speed. Any recommendations for IIS books, especially for som...

Django Apache/mod_python Admin CSS not appearing with admin tables

I have Windows XP/Django/apache/mod_python working on localhost. All parts are working with the exception of the admin CSS not rendering. The admin works, but no html formatting. I've made additions in: settings.py INSTALLED_APPS 'django.contrib.admin', urls.py from django.contrib import admin admin.autodiscover() (r'^ad...

i am looking for svn admin like "VisualSVN Server" for remote server?

i am looking for svn admin a desktop application like "VisualSVN Server" only for remote server the svn server will run on Linux but i need the admin tool to run locally on my window matching i wont to be able to create user group and change security setting create new repositories and not by writing commands is there is a tool like...

Add row to inlines dynamically in django admin

I have the following defined: class AnswerChoiceInline(admin.TabularInline): model = AnswerChoice # extra = 0 class QuestionAdmin(admin.ModelAdmin): inlines = [AnswerChoiceInline] admin.site.register(Question, QuestionAdmin) Obviously I get the default extras setting (default is 3). Is there a way built into the admin ...

From admin to dev

Recently a friend of mine had gone from a high level NOC position to a developer. Before that he was just doing the help desk stuff. He has no degree, only the usual MIS/networking certifications and as far as I know only tinkers with code on the weekends. I can see where in some scenarios having a good understanding of configurations, p...

Enable/disable hardware w/o Admin rights on Vista?

Hi, I've been asked to provide a program/script/whatever that enables or disables the CD/DVD drive USB ports Floppy (!) drive devices without requiring admin rights, that is, that can be run by a 'normal' user. Ideally, something like a command line utility: C:> foobar cdrom /disable Any pointers, hints or clues gratefully accepte...

Best way for Java to write/read file on a separate machine?

We have a Java application server running on Sun Solaris. We now need to be able to write files and read files to/from a separate machine, which is running WindowsXP. These 2 machines are administered by 2 separate groups within the same firewall. If it is easier, we could use Java to write the file to Solaris and then use some 3rd pa...

SVN admin management GUI tool

any GUI Admin / Management tool for SVN repository on windows? please suggest. thanks in advance ...

How to show Django auth messages only in admin interface?

Django's auth messages look pretty handy for notifying a CMS user of some configuration problem. The thing is that the messages are deleted on every page load if you include the "django.core.context_processors.auth" context processor, and you have to include that processor if you want to use the admin interface. I tried hacking around i...

Codeigniter security - mysql database

I'm in the final stages of implementing a codeigniter site which requires a really simple login system: one user and one password, to protect the admin area. I think I will be using one of the many CI authentication libraries, which should allow me to ensure that people can't read from the database without being logged in as admin(I hop...

Check whether the user name is in the administrator group

In an InstallShield basic MSI project: how can I check whether a user name is in the administrator group? (Not the current user with which I know it's possible to do so.) ...

Running setup project (built in .NET) with admin privileges

Hi I have created setup project in Visual Studio 2008. How do I run this setup with admin privileges - I have tried Right-Click, run as administrator. Vista does not prompt me for password. Am I missing something? PK ...