On Dec 5, 2008, at 8:41 AM, Melchiz wrote:
>
> So my company wants to reinstate Trac. Our QA guy left, so now it's up
> to me to get it up and running. To let you know, I have no experience
> with Apache, Python, or Unix, and limited experience with SQL. I need
> documentation or help that assumes less knowledge than the existing
> Trac guide (honestly, it's quite obtuse and totally meaningless to new
> users like me).
>
> Here is what I have and what I need to do:
>
> -Trac fully installed on a Windows 2003 box with Python 2.5, SQLite3,
> and a running Apache server
>
> -Trac frontend is not accessible now that we have a new network
> (different IPs) and domain
It is hard to say because you didn't include your apache config, but I
would check the VirtualHost blocks and make sure they match the new IP
(or *). Can you reach anything on the server?
>
>
> -Subversion on the same machine; we need to connect Trac to the SVN
> repository so our developers can contribute
>
In your trac.ini file, set repository_dir to the full path to the
repository (local path, not URL) and set repository_type to "svn". You
will also need the subversion Python bindings, see the TracSubversion
page for a link to download precompiled ones for windows. Make sure
you gets ones that match your subversion and apache versions.
> Where do I start? How do I manage Trac? How do I get it back up and
> running? How do I wipe the old tickets/database (no longer useful or
> relevant, we want to get rid of them)? How do I set up Trac for use by
> our staff?
>
In a DB console:
DELETE FROM ticket;
DELETE FROM ticket_change;
DELETE FROM ticket_custom;
> Keep in mind that Trac was running properly on the same machine,
> before the network reconfiguration. Not only do I need to get it
> running again, but I need beginner-friendly instructions on how to
> manage it, or reinstall it, should we reformat the box in the near
> future.
>
> Thanks!
>
> >
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac
Users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---