On 8-May-09, at 8:40 AM, Arvin wrote:
> > Hello there, > > First let me say sorry if my question is noobish. But i cant help it > as i am new to TRAC or Python. I have just now installed Trac on my > windows XP using Python 2.5 . I installed Genshi , setuptools,etc. But > i didnt use SVN. > > I have successfully installed trac and created a new project > > tracd --port 8000 --auth=myproj,c:\digest.txt,trac c:\projects\trac > \myproj > > But now after see it in browser, i am not able to see the TracBrowser > to see the source code and i am not able to see Admin Login. Am i > missing anything ? Yep, two things. First you said yourself.. You're missing svn. 1. Create an svn repository ie 'svnadmin create c:\mysvnrepo' 2. Add that repo path to your project's trac.ini 3. Resync Trac's database ie 'trac-admin c:\projects\trac\myproj resync' Now load Trac and you'll see your empty svn filesystem under Browse Source. Next I assume since it's a local development copy you're not using authentication yet so just grant the admin to anonymous. ie 'trac-admin c:\projects\trac\myproj permissions add anonymous TRAC_ADMIN' -David --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
