Re: setup question: generated links
Lance Weber <lance-kMc2rFPYsS/[email protected]>
| Newsgroups | gmane.comp.web.pyblosxom.user |
|---|---|
| Message-ID | <[email protected]> |
Sorry, meant to reply to all on this (*sigh* I really really needed a starbucks run this morning), Anyway, Wari's questions about the /blog/ entry got me looking back at apache instead of pyblosxom and I quickly determined that I wasn't redirecting /blog/ to pyblosxom.cgi correctly. A quick ScriptAlias entry took care of the problem and moving content out of the code area took care of everything. Thanks to everyone who looked, I'm sure I might have a couple more questions once I get closer to having it setup the way I want it. -------- Original Message -------- Subject: Re: [pyblosxom-users] setup question: generated links Date: Fri, 06 Feb 2004 09:27:46 -0700 From: Lance Weber <lance-kMc2rFPYsS/[email protected]> To: Wari Wahab <[email protected]> References: <4023B829.7010305-kMc2rFPYsS/[email protected]> <[email protected]> You're right of course, sorry about that! I plead guilty by reason of caffeine deprivation and throw myself on the mercy of the group ;) Here's an infodump: ---- Base system ---- Debian, Apache, Python 2.3.3, Pyblosxom cvs version from Feb 3rd installed as system (ie, "sudo setup.py install"). httpd.conf entry (no .htaccess used - yet): <Directory "/proj/www/alfheim/blog/"> AllowOverride All Options +Indexes +ExecCGI +FollowSymLinks Order allow,deny Allow from all </Directory> ---- Directories ---- /proj/www/alfheim/blog - config.py - config.pyc - content/ - images/ - index.cgi -> pyblosxom.cgi - pyblosxom.cgi - xmlrpc.cgi /blog/content - test2.txt - developer/ - technogeek/ - blogspace/ (...) ---- config.py entries ---- py['datadir'] = "/proj/www/alfheim/blog/content" py['base_url'] = "http://www.alfheimstudios.com/blog" py['plugin_dirs'] = ['/usr/share/pyblosxom-cvs/contrib/plugins','/proj/pyproj/myplugins'] py['load_plugins'] = ['logrequest','logstats', 'pyarchives', 'pycalendar', 'pycategories', 'pyfilenamemtime', 'w3cdate','weblogsping', 'breadcrumbs', 'stripes', 'plugininfo'] Again, sorry for not having this in the first post. Wari Wahab wrote: > Lance Weber wrote: > >> Hey folks, I'm moving my blog over to pyblosxom (as a good excuse to >> learn python by hacking around with the code). Everything is going >> pretty well so far except for the pyblosxom generated links at the >> bottom of my entries - all of those generate a 404. I've looked at a >> couple other pyblosxom blogs and the url's seem to match the pattern, >> so I could use some advice on where to look next... >> >> Here's the site: http://www.alfheimstudios.com/blog/ >> I've got several test entries in there and you can see none of the >> entry links work. Also, I can't seem to get plugin_info to work >> either, but I've backburnered that issue until I figure this one out. > > > I need to know what /blog/ points to and how you got it to generate a > web page. .htaccess file and other setup related items would be useful > too for others to help you debug >