Bill Johnson kirjoitti: > I am a PLC guy, I do html, js, php and mysql, just getting my feet wet in > Python. > > I am trying to run trac on XAMPP (win32, apache2.5.2) I have followed the > instructions carefully at http://trac.edgewall.org/wiki/TracOnWindows and > reviewed the instructions at http://trac.edgewall.org/wiki/TracInstall > > I am positive I have missed a simple step somewhere, as this is what I get > when I open up localhost:8080 > Available Projects > And then nothing. > > Some notes: I created the project folder as C:\xampp\htdocs\xampp\projects > I started Tracd and the window says: > C:\xampp\Python2.5.2\Scripts>tracd --hostname=localhost -p 8080 /projects > Server starting in PID 3588. > Serving on http://localhost:8080/ > 127.0.0.1 - - [04/May/2008 07:46:25] "GET / HTTP/1.1" 200 - > 127.0.0.1 - - [04/May/2008 07:46:25] "GET /favicon.ico HTTP/1.1" 404 - > 127.0.0.1 - - [04/May/2008 07:46:36] "GET /projects HTTP/1.1" 404 -
You didn't mentioned that you created project with trac-admin. I suggest that you create two base directories for example c:\trac and c:\svn First create subversion: svnadmin create c:\svn\testproject Then create trac environment: trac-admin c:\trac\testproject initenv Fill in other details, when asking for repository you would but c:\svn\testproject here. And now test with tracd: tracd --hostname=localhost -p 8080 c:\trac\testproject Now you should have access to just created testproject. If it works it is time to configure XAMPP to run all that stuff. -- Jani Tiainen --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
