Login | Register For Free | Help
Search for: (Advanced)

Mailing List Archive: Trac: Users

webadmin

 

 

Trac users RSS feed   Index | Next | Previous | View Threaded


daniel.hahn at charter

Dec 12, 2007, 2:42 PM

Post #1 of 10 (432 views)
Permalink
webadmin

Hi all,

I am running trac .11 on an windows 2003 server with Apache.

I have everything working fine in my original instillation. I created a
second trac env with the trac-admin initenv command and while I can add in
plugins to it and they work when enabeled, It does not seem to have the
webadmin running for the second wiki but it is running for the first wiki.




Any thoughts?


Daniel Hahn
Seniors Systems Admin TwinTechs



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac Users" group.
To post to this group, send email to trac-users[at]googlegroups.com
To unsubscribe from this group, send email to trac-users-unsubscribe[at]googlegroups.com
For more options, visit this group at http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---


jcrissman at freightmgmt

Dec 12, 2007, 3:31 PM

Post #2 of 10 (394 views)
Permalink
Re: webadmin [In reply to]

Daniel:

I also had this problem during my first experience with Trac.

Did you set permissions? TRAC_ADMIN is not set for the anonymous user when a
new environment is created -- for security reasons, of course. The following
adds a user to a group and assigns permissions to the group:

# trac-admin /path/to/env permission add youruser youradmingroup
# trac-admin /path/to/env permission add youradmingroup TRAC_ADMIN

Hint: You can also 'list' permissions for the specified Trac to see
what might be different between environments; multiple permissions can be
specified at once, separated by a space.


You can enable WebAdmin by default for all environments (or disable
per-environment in the respective trac.ini):

- Drop the .egg in your Python libs path (or use easy_install)

- Edit your global trac.ini to enable as default:
[components]
webadmin.* = enabled

- You can disable it per-environment via trac.ini:
[components]
webadmin.* = disabled

- Restart the Web site in IIS (via the management console).


Hope this helps.


--Jim Crissman
IT Representative / Freight Management, Inc.




-----Original Message-----
From: trac-users[at]googlegroups.com [mailto:trac-users[at]googlegroups.com] On
Behalf Of Daniel Hahn
Sent: Wednesday, December 12, 2007 14.42
To: trac-users[at]googlegroups.com
Subject: [Trac] webadmin


Hi all,

I am running trac .11 on an windows 2003 server with Apache.

I have everything working fine in my original instillation. I created a
second trac env with the trac-admin initenv command and while I can add in
plugins to it and they work when enabeled, It does not seem to have the
webadmin running for the second wiki but it is running for the first wiki.




Any thoughts?


Daniel Hahn
Seniors Systems Admin TwinTechs








--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac Users" group.
To post to this group, send email to trac-users[at]googlegroups.com
To unsubscribe from this group, send email to trac-users-unsubscribe[at]googlegroups.com
For more options, visit this group at http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---


kantrn at rpi

Dec 13, 2007, 1:22 AM

Post #3 of 10 (395 views)
Permalink
Re: webadmin [In reply to]

Most of this is now incorrect in 0.11dev. WebAdmin is directly
integrated, so all you need to do is grant yourself TRAC_ADMIN permissions.

--Noah

Jim Crissman wrote:
> Daniel:
>
> I also had this problem during my first experience with Trac.
>
> Did you set permissions? TRAC_ADMIN is not set for the anonymous user when a
> new environment is created -- for security reasons, of course. The following
> adds a user to a group and assigns permissions to the group:
>
> # trac-admin /path/to/env permission add youruser youradmingroup
> # trac-admin /path/to/env permission add youradmingroup TRAC_ADMIN
>
> Hint: You can also 'list' permissions for the specified Trac to see
> what might be different between environments; multiple permissions can be
> specified at once, separated by a space.
>
>
> You can enable WebAdmin by default for all environments (or disable
> per-environment in the respective trac.ini):
>
> - Drop the .egg in your Python libs path (or use easy_install)
>
> - Edit your global trac.ini to enable as default:
> [components]
> webadmin.* = enabled
>
> - You can disable it per-environment via trac.ini:
> [components]
> webadmin.* = disabled
>
> - Restart the Web site in IIS (via the management console).
>
>
> Hope this helps.
>
>
> --Jim Crissman
> IT Representative / Freight Management, Inc.
>
>
>
>
> -----Original Message-----
> From: trac-users[at]googlegroups.com [mailto:trac-users[at]googlegroups.com] On
> Behalf Of Daniel Hahn
> Sent: Wednesday, December 12, 2007 14.42
> To: trac-users[at]googlegroups.com
> Subject: [Trac] webadmin
>
>
> Hi all,
>
> I am running trac .11 on an windows 2003 server with Apache.
>
> I have everything working fine in my original instillation. I created a
> second trac env with the trac-admin initenv command and while I can add in
> plugins to it and they work when enabeled, It does not seem to have the
> webadmin running for the second wiki but it is running for the first wiki.
>
>
>
>
> Any thoughts?
>
>
> Daniel Hahn
> Seniors Systems Admin TwinTechs
>
>
>
>
>
>
>
>
> --~--~---------~--~----~------------~-------~--~----~
> You received this message because you are subscribed to the Google Groups "Trac Users" group.
> To post to this group, send email to trac-users[at]googlegroups.com
> To unsubscribe from this group, send email to trac-users-unsubscribe[at]googlegroups.com
> For more options, visit this group at http://groups.google.com/group/trac-users?hl=en
> -~----------~----~----~----~------~----~------~--~---
>
>
>
Attachments: signature.asc (0.24 KB)


daniel.hahn at charter

Dec 13, 2007, 4:38 AM

Post #4 of 10 (394 views)
Permalink
Re: webadmin [In reply to]

:) and a mistype was the cause, I had given myself WIKI_ADMIN priv not
TRAC_ADMIN. Thanks to both of you for replying.

Daniel Hahn
Slightly embarrassed Admin

-----Original Message-----
From: trac-users[at]googlegroups.com [mailto:trac-users[at]googlegroups.com] On
Behalf Of Noah Kantrowitz
Sent: Thursday, December 13, 2007 1:23 AM
To: trac-users[at]googlegroups.com
Subject: [Trac] Re: webadmin

Most of this is now incorrect in 0.11dev. WebAdmin is directly
integrated, so all you need to do is grant yourself TRAC_ADMIN permissions.

--Noah

Jim Crissman wrote:
> Daniel:
>
> I also had this problem during my first experience with Trac.
>
> Did you set permissions? TRAC_ADMIN is not set for the anonymous user when
a
> new environment is created -- for security reasons, of course. The
following
> adds a user to a group and assigns permissions to the group:
>
> # trac-admin /path/to/env permission add youruser youradmingroup
> # trac-admin /path/to/env permission add youradmingroup TRAC_ADMIN
>
> Hint: You can also 'list' permissions for the specified Trac to see
> what might be different between environments; multiple permissions can be
> specified at once, separated by a space.
>
>
> You can enable WebAdmin by default for all environments (or disable
> per-environment in the respective trac.ini):
>
> - Drop the .egg in your Python libs path (or use easy_install)
>
> - Edit your global trac.ini to enable as default:
> [components]
> webadmin.* = enabled
>
> - You can disable it per-environment via trac.ini:
> [components]
> webadmin.* = disabled
>
> - Restart the Web site in IIS (via the management console).
>
>
> Hope this helps.
>
>
> --Jim Crissman
> IT Representative / Freight Management, Inc.
>
>
>
>
> -----Original Message-----
> From: trac-users[at]googlegroups.com [mailto:trac-users[at]googlegroups.com] On
> Behalf Of Daniel Hahn
> Sent: Wednesday, December 12, 2007 14.42
> To: trac-users[at]googlegroups.com
> Subject: [Trac] webadmin
>
>
> Hi all,
>
> I am running trac .11 on an windows 2003 server with Apache.
>
> I have everything working fine in my original instillation. I created a
> second trac env with the trac-admin initenv command and while I can add in
> plugins to it and they work when enabeled, It does not seem to have the
> webadmin running for the second wiki but it is running for the first wiki.
>
>
>
>
> Any thoughts?
>
>
> Daniel Hahn
> Seniors Systems Admin TwinTechs
>
>
>
>
>
>
>
>
> >
>
>





--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac Users" group.
To post to this group, send email to trac-users[at]googlegroups.com
To unsubscribe from this group, send email to trac-users-unsubscribe[at]googlegroups.com
For more options, visit this group at http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---


jcrissman at freightmgmt

Dec 13, 2007, 10:53 AM

Post #5 of 10 (393 views)
Permalink
Re: webadmin [In reply to]

Well, WIKI_ADMIN is a valid privilege, but it only pertains to the Wiki and
not the ticket system or the Admin tab. :)

It would be nice if there were an easy way to "clone" permissions or other
settings from another environment to save time (and embarassment), but I
suppose that trick will have to wait for 0.12 or later. ;)

Noah is correct; my comments are mostly irrelevant for the current version.
I have 0.10.4 installed on FreeBSD, so WebAdmin requires the extra steps;
now if I can just stop breaking stuff.... ;)


Happy coding!

--Jim Crissman
IT Representative / Freight Management, Inc.




-----Original Message-----
From: trac-users[at]googlegroups.com [mailto:trac-users[at]googlegroups.com] On
Behalf Of Daniel Hahn
Sent: Thursday, December 13, 2007 04.38
To: trac-users[at]googlegroups.com
Subject: [Trac] Re: webadmin


:) and a mistype was the cause, I had given myself WIKI_ADMIN priv not
TRAC_ADMIN. Thanks to both of you for replying.

Daniel Hahn
Slightly embarrassed Admin

-----Original Message-----
From: trac-users[at]googlegroups.com [mailto:trac-users[at]googlegroups.com] On
Behalf Of Noah Kantrowitz
Sent: Thursday, December 13, 2007 1:23 AM
To: trac-users[at]googlegroups.com
Subject: [Trac] Re: webadmin

Most of this is now incorrect in 0.11dev. WebAdmin is directly integrated,
so all you need to do is grant yourself TRAC_ADMIN permissions.

--Noah

Jim Crissman wrote:
> Daniel:
>
> I also had this problem during my first experience with Trac.
>
> Did you set permissions? TRAC_ADMIN is not set for the anonymous user
> when
a
> new environment is created -- for security reasons, of course. The
following
> adds a user to a group and assigns permissions to the group:
>
> # trac-admin /path/to/env permission add youruser youradmingroup
> # trac-admin /path/to/env permission add youradmingroup TRAC_ADMIN
>
> Hint: You can also 'list' permissions for the specified Trac to see
> what might be different between environments; multiple permissions can
> be specified at once, separated by a space.
>
>
> You can enable WebAdmin by default for all environments (or disable
> per-environment in the respective trac.ini):
>
> - Drop the .egg in your Python libs path (or use easy_install)
>
> - Edit your global trac.ini to enable as default:
> [components]
> webadmin.* = enabled
>
> - You can disable it per-environment via trac.ini:
> [components]
> webadmin.* = disabled
>
> - Restart the Web site in IIS (via the management console).
>
>
> Hope this helps.
>
>
> --Jim Crissman
> IT Representative / Freight Management, Inc.
>
>
>
>
> -----Original Message-----
> From: trac-users[at]googlegroups.com [mailto:trac-users[at]googlegroups.com]
> On Behalf Of Daniel Hahn
> Sent: Wednesday, December 12, 2007 14.42
> To: trac-users[at]googlegroups.com
> Subject: [Trac] webadmin
>
>
> Hi all,
>
> I am running trac .11 on an windows 2003 server with Apache.
>
> I have everything working fine in my original instillation. I created
> a second trac env with the trac-admin initenv command and while I can
> add in plugins to it and they work when enabeled, It does not seem to
> have the webadmin running for the second wiki but it is running for the
first wiki.
>
>
>
>
> Any thoughts?
>
>
> Daniel Hahn
> Seniors Systems Admin TwinTechs
>
>
>
>
>
>
>
>
> >
>
>










--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac Users" group.
To post to this group, send email to trac-users[at]googlegroups.com
To unsubscribe from this group, send email to trac-users-unsubscribe[at]googlegroups.com
For more options, visit this group at http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---


mark.cooke at siemens

Sep 2, 2009, 4:47 AM

Post #6 of 10 (249 views)
Permalink
Re: WebAdmin [In reply to]

>
> Trac version 0.11.5rc1
>
...this version of Trac has WebAdmin built-in so you do not need it! Do
not try to install it again.

> While enabling Webadmin plugin am getting this error log
> Will you please give me an immense idea to overcome from this issue
> I had spent nearly a day but there no improvement, i required
> web admin to work on HIDEVALS plugin
>
> 2009-09-02 14:43:21,092 Trac[env] INFO: The legacy
> TracWebAdmin plugin has been automatically disabled, and the
> integrated administration interface will be used instead.
>
> Thanks,
> Ramesh V
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac Users" group.
To post to this group, send email to trac-users[at]googlegroups.com
To unsubscribe from this group, send email to trac-users+unsubscribe[at]googlegroups.com
For more options, visit this group at http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---


ramesh.saadhvi at gmail

Sep 2, 2009, 4:52 AM

Post #7 of 10 (249 views)
Permalink
Re: WebAdmin [In reply to]

You are correct then how can i view the webadmin UI(User Interface pages)

Thanks,
Ramesh V

On Wed, Sep 2, 2009 at 5:17 PM, Cooke, Mark <mark.cooke[at]siemens.com> wrote:

>
> >
> > Trac version 0.11.5rc1
> >
> ...this version of Trac has WebAdmin built-in so you do not need it! Do
> not try to install it again.
>
> > While enabling Webadmin plugin am getting this error log
> > Will you please give me an immense idea to overcome from this issue
> > I had spent nearly a day but there no improvement, i required
> > web admin to work on HIDEVALS plugin
> >
> > 2009-09-02 14:43:21,092 Trac[env] INFO: The legacy
> > TracWebAdmin plugin has been automatically disabled, and the
> > integrated administration interface will be used instead.
> >
> > Thanks,
> > Ramesh V
> >
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac Users" group.
To post to this group, send email to trac-users[at]googlegroups.com
To unsubscribe from this group, send email to trac-users+unsubscribe[at]googlegroups.com
For more options, visit this group at http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---


mark.cooke at siemens

Sep 2, 2009, 4:56 AM

Post #8 of 10 (249 views)
Permalink
Re: WebAdmin [In reply to]

>
> You are correct then how can i view the webadmin UI(User
> Interface pages)
>
You just need to make sure that you have TRAC_ADMIN assigned to your own
login, then login and click on 'Admin' on the main nav bar. Select what
you want from the left hand menu on the page that appears. The command:

> trac-admin <environment> permission add <username> TRAC_ADMIN

...will assign TRAC_ADMIN rights to your username, assuming you have
rights to the trac environment directory (I use windoze so not a
problem!)

~ Mark C

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac Users" group.
To post to this group, send email to trac-users[at]googlegroups.com
To unsubscribe from this group, send email to trac-users+unsubscribe[at]googlegroups.com
For more options, visit this group at http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---


ramesh.saadhvi at gmail

Sep 2, 2009, 5:01 AM

Post #9 of 10 (251 views)
Permalink
Re: WebAdmin [In reply to]

Yes i have the Admin link
I though that TRAC_ADMIN and WEBADMIN are different

Thanks lot for your clarification

I will work with my requirement and i will back

Thanks
Ramesh V


On Wed, Sep 2, 2009 at 5:26 PM, Cooke, Mark <mark.cooke[at]siemens.com> wrote:

>
> >
> > You are correct then how can i view the webadmin UI(User
> > Interface pages)
> >
> You just need to make sure that you have TRAC_ADMIN assigned to your own
> login, then login and click on 'Admin' on the main nav bar. Select what
> you want from the left hand menu on the page that appears. The command:
>
> > trac-admin <environment> permission add <username> TRAC_ADMIN
>
> ...will assign TRAC_ADMIN rights to your username, assuming you have
> rights to the trac environment directory (I use windoze so not a
> problem!)
>
> ~ Mark C
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac Users" group.
To post to this group, send email to trac-users[at]googlegroups.com
To unsubscribe from this group, send email to trac-users+unsubscribe[at]googlegroups.com
For more options, visit this group at http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---


hyugaricdeau at gmail

Sep 2, 2009, 9:59 AM

Post #10 of 10 (247 views)
Permalink
Re: Webadmin [In reply to]

On Wed, Sep 2, 2009 at 1:26 AM, ramesh. saadhvi<ramesh.saadhvi[at]gmail.com> wrote:
> Hi,
>
> Am using http://trac-hacks.org/wiki/HideValsPlugin, they recommended to use
> webadmin
>
>
> Am running this trac locally in windows XP, it seems webadmin plugin is
> inbuilt with trac 0.11.5rc1, please assist me how to use it, am able to
> enable the plugin but and am not able to see the webadmin screen,what i have
> to do to overcome this issue please check the attached screen shot and
> trac.ini configuration
>
> Am able to enable the options in webadmin plugin , but its not showing it is
> enabled.
> -----------------------------------------------------------------
> webadmin.* = enabled
> webadmin.basics.projectadminpage = enabled
> webadmin.logging.loggingadminpage = enabled
> webadmin.perm.permissionadminpage = enabled
> webadmin.plugin.pluginadminpage = enabled
> webadmin.ticket.componentadminpage = enabled
> webadmin.ticket.milestoneadminpage = enabled
> webadmin.ticket.priorityadminpage = enabled
> webadmin.ticket.severityadminpage = enabled
> webadmin.ticket.tickettypeadminpage = enabled
> webadmin.ticket.versionadminpage = enabled
> webadmin.web_ui.adminmodule = enabled
> -------------------------------------------------------------------------------------
>
> The check box are always showing the status that i didn't selected,
>
> I dont know whats happening.
>
> This is the environment system information
>
> System Information
>
> Trac: 0.11.5rc1
> Python: 2.5.4 (r254:67916, Dec 23 2008, 15:10:54) [MSC v.1310 32 bit
> (Intel)]
> setuptools: 0.6c9
> SQLite: 3.6.11
> pysqlite: 2.5.5
> Genshi: 0.5.1
> Subversion: 1.4.5 (r25188)
> jQuery:1.2.6
> Thanks,
> Ramesh V

You don't need to enable anything. The webadmin plugin is the plugin
that used to provide all the pages under /admin. As you can see,
that's already built in.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac Users" group.
To post to this group, send email to trac-users[at]googlegroups.com
To unsubscribe from this group, send email to trac-users+unsubscribe[at]googlegroups.com
For more options, visit this group at http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Trac users RSS feed   Index | Next | Previous | View Threaded
 
 


Interested in having your list archived? Contact lists@gossamer-threads.com
 
  Web Applications & Managed Hosting Powered by Gossamer Threads Inc.