Mon, 01 Jan 2007

PyBlosxom on DreamHost

The site has successfully been migrated over to DreamHost. It took me a while to get the Apache RewriteRules configured as they turned out to be a little different than what I was previously using on my server.

On my server, where the pyblosxom.cgi script resided in a cgi-bin directory, I had the following rule in place:

RewriteEngine on
RewriteRule ^/(.*) /cgi-bin/pyblosxom.cgi/$1 [L]

This sends all requests through the .cgi script by default and removes the need for it to be included in the url.

On DreamHost accounts there is no cgi-bin directory because scripts can be run from anywhere in the site. The following RewriteRule was needed to make everything work as is was before:

RewriteEngine on 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) /index.cgi/$1 [L]


posted: 22:30 | 0 comments | tags: , ,


Sun, 22 Oct 2006

Migration to pyBlosxom

I have finished moving the site into pyBlosxom. The overall design is not finalized yet and I do not have comments working, however, it is a good start.

I am not sure if this is a long term solution or not, however, I figure I have a better chance of hacking the underlying Python code and working on plugins for it than I do working with Perl in the near future.



posted: 21:07 | 0 comments | tags: ,


© 2008 PlatosCave.net